/* Hero Template Block Styles */

.hero-template {
    position: relative;
    min-height: 100vh;
    background: #0a0a0a;
    overflow: hidden;
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
    width: auto;
    padding: 60px 40px;
    box-sizing: border-box;
}

/* Background Gradients */
.hero-template__gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.hero-template__gradient--1 {
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsl(142 71% 45%) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.hero-template__gradient--2 {
    bottom: -300px;
    right: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Container */
.hero-template__container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px;
    align-items: center;
    min-height: calc(100vh - 120px);
}

/* Left Section */
.hero-template__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Badge */
.hero-template__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: hsl(186 100% 33% / .2);
    border: 1px solid hsl(186 100% 33% / .3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: hsl(186 100% 33%);
    width: fit-content;
}

.hero-template__badge-icon {
    color: hsl(186 100% 33%);
    display: flex;
    align-items: center;
}

/* Headline */
.hero-template__headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.hero-template__headline--white {
    color: #ffffff;
}

.hero-template__headline--green {
    background: var(--gradient-primary);
    background-color: hsl(142 71% 45%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.hero-template__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #a0a0a0;
    margin: 0;
    max-width: 500px;
}

/* Form */
.hero-template__form {
    display: flex;
    gap: 12px;
    max-width: 500px;
}

.hero-template__email-input {
    flex: 1;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 16px;
    color: #333;
    outline: none;
}

.hero-template__email-input::placeholder {
    color: #999;
}

.hero-template__cta-button {
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: inline-block;
    color: #101d29 !important;
    background: linear-gradient(135deg, hsl(75 100% 62%), hsl(90 100% 55%));
    padding: 16px 40px;
    border-radius: 0.5rem;
    transition: transform 0.2s 
        cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s 
        cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-template__cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px hsl(75 100% 62% / .4);
}

/* Disclaimer */
.hero-template__disclaimer {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Statistics */
.hero-template__stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.hero-template__stat {
    text-align: left;
}

.hero-template__stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.hero-template__stat-label {
    font-size: 14px;
    color: #a0a0a0;
    margin-top: 4px;
}

/* Right Section */
.hero-template__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Picks Card */
.hero-template__picks-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-template__picks-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.hero-template__picks-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.hero-template__live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    color: hsl(142 71% 45%);
    font-size: 12px;
    font-weight: 600;
}

.hero-template__live-dot {
    width: 8px;
    height: 8px;
    background: hsl(142 71% 45%);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Picks List */
.hero-template__picks-list {
    margin-bottom: 20px;
}

.hero-template__pick {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.hero-template__pick--border {
    border-top: 1px solid #e0e0e0;
}

.hero-template__pick-info {
    flex: 1;
}

.hero-template__pick-teams {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.hero-template__pick-meta {
    font-size: 14px;
    color: #666;
}

.hero-template__pick-selection {
    text-align: right;
}

.hero-template__pick-value {
    font-weight: 700;
    color: hsl(186 100% 33%);
    margin-bottom: 2px;
}

.hero-template__pick-confidence {
    font-size: 12px;
    color: hsl(142 71% 45%);
}

/* View All Button */
.hero-template__view-all {
    width: 100%;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-template__view-all:hover {
    background: #f0f0f0;
    color: hsl(142 71% 45%);
    border-color: hsl(142 71% 45%);
}

/* Bottom Stats */
.hero-template__bottom-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-template__stat-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-template__stat-card-content {
    flex: 1;
}

.hero-template__stat-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-template__stat-card-header svg {
    color: hsl(186 100% 33%);
}

.hero-template__stat-card-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.hero-template__stat-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(142 71% 45%);
    line-height: 1;
}

.hero-template__stat-card-period {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-template__container {
        gap: 60px;
    }
    
    .hero-template__headline {
        font-size: 3rem;
    }
}

@media (max-width: 968px) {
    .hero-template {
        padding: 40px 20px;
    }
    
    .hero-template__container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-template__headline {
        font-size: 2.5rem;
    }
    
    .hero-template__form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .hero-template__stats {
        justify-content: center;
        gap: 30px;
    }
    
    .hero-template__right {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero-template__headline {
        font-size: 2rem;
    }
    
    .hero-template__stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .hero-template__stat {
        text-align: center;
    }
    
    .hero-template__bottom-stats {
        grid-template-columns: 1fr;
    }
}
