/* Early Testers Page - Restored Sportzey Branding */

/* Use Sportzey brand colors from base.css */
:root {
    --sportzey-beige: #f5f5dc;
    --sportzey-beige-dark: #e8e8d0;
    --sportzey-beige-light: #fafaf0;
    --sportzey-black: #1a1a1a;
    --sportzey-black-light: #2d2d2d;
    --sportzey-gray: #6b7280;
    --sportzey-gray-light: #9ca3af;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

/* Container Alignment */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Hero Section - Sportzey Magic */
.hero {
    background: var(--sportzey-beige);
    padding: 6rem 0 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(26, 26, 26, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 26, 26, 0.03) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sportzey" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%231a1a1a" opacity="0.05"/><circle cx="0" cy="0" r="1" fill="%231a1a1a" opacity="0.03"/><circle cx="40" cy="40" r="1.5" fill="%231a1a1a" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23sportzey)"/></svg>');
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-logo {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-hero {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--sportzey-black);
    margin-bottom: 1rem;
    line-height: 1.1;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--sportzey-black);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--sportzey-black);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 500px;
}

/* Hero Stats - Four Perfectly Aligned Cards */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: var(--white);
    border: 2px solid var(--sportzey-beige-dark);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--sportzey-black);
}

.stat-item.highlight {
    background: var(--sportzey-black);
    color: var(--white);
    border-color: var(--sportzey-black);
}

.stat-item.highlight .stat-number,
.stat-item.highlight .stat-label {
    color: var(--white);
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--sportzey-black);
    margin-bottom: 0.5rem;
    font-family: 'Jersey25', sans-serif;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sportzey-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Main Content Layout - Enhanced Sportzey */
.main-content-section {
    background: var(--sportzey-beige-light);
    padding: 10rem 0 12rem 0;
    position: relative;
    overflow: hidden;
}

.main-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(26, 26, 26, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(26, 26, 26, 0.02) 0%, transparent 40%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="sportzey-grid" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="%231a1a1a" opacity="0.02"/><circle cx="0" cy="0" r="1" fill="%231a1a1a" opacity="0.01"/><circle cx="60" cy="60" r="1" fill="%231a1a1a" opacity="0.01"/><line x1="0" y1="30" x2="60" y2="30" stroke="%231a1a1a" stroke-width="0.5" opacity="0.01"/><line x1="30" y1="0" x2="30" y2="60" stroke="%231a1a1a" stroke-width="0.5" opacity="0.01"/></pattern></defs><rect width="100" height="100" fill="url(%23sportzey-grid)"/></svg>');
    z-index: -1;
}

.main-content-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
    z-index: -1;
}

.main-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 8rem;
    align-items: start;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Content Section Titles - Sportzey Style */
.content-section-title {
    font-size: 2.4rem;
    color: var(--sportzey-black);
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.content-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--sportzey-black);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(26, 26, 26, 0.2);
}

.content-section-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(27, 54, 93, 0.2), transparent);
}

/* Left Column - Enhanced Layout */
.content-left {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 2rem 0;
    max-width: 100%;
}

/* Benefits Section - Enhanced Grid */
.benefits-section {
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--sportzey-beige-dark);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--sportzey-black);
    z-index: 1;
}

.benefit-card.primary::before { background: var(--sportzey-black); }
.benefit-card.secondary::before { background: var(--sportzey-gray); }
.benefit-card.accent::before { background: var(--sportzey-black-light); }
.benefit-card.highlight::before { background: var(--sportzey-black); }

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--sportzey-black);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--sportzey-black);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: var(--sportzey-black);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--sportzey-gray);
    line-height: 1.5;
    font-weight: 500;
}

/* Removed card-highlight - not needed in new design */

/* Journey Timeline - Enhanced */
.journey-section {
    margin-bottom: 0;
    padding: 3rem 0;
    background: var(--white);
    border-radius: 28px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--sportzey-beige-dark);
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--sportzey-black);
    z-index: 1;
}

.journey-title {
    font-size: 2rem;
    color: var(--sportzey-black);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.journey-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: var(--sportzey-gray-light);
    z-index: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 1rem;
    border-radius: 16px;
    border: 2px solid var(--sportzey-beige-dark);
    transition: all 0.3s ease;
}

.timeline-step:hover {
    transform: translateY(-5px);
    border-color: var(--sportzey-black);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--sportzey-black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step-content h4 {
    font-size: 1.1rem;
    color: var(--sportzey-black);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--sportzey-gray);
    font-weight: 500;
    line-height: 1.4;
}

.timeline-connector {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    margin: 0 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    opacity: 0.4;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(27, 54, 93, 0.15);
}

/* Stats section CSS removed - unnecessary clutter */

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    z-index: 1;
}

.journey-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(27, 54, 93, 0.02) 0%, transparent 50%);
    z-index: -1;
}

.journey-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(27, 54, 93, 0.15),
        0 12px 25px rgba(27, 54, 93, 0.1),
        0 0 0 1px rgba(27, 54, 93, 0.15);
    border-color: rgba(27, 54, 93, 0.2);
}

.journey-card:hover::before {
    background: linear-gradient(90deg, var(--secondary-blue), var(--primary-blue));
}

.journey-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 1rem;
    box-shadow: 0 10px 25px rgba(27, 54, 93, 0.25);
    border: 3px solid var(--white);
}

.journey-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.journey-card p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.journey-feature {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(27, 54, 93, 0.2);
}

/* Right Column - Enhanced Form Section */
.content-right {
    position: sticky;
    top: 2rem;
    z-index: 10;
    padding: 1rem 0;
}

.form-wrapper {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 248, 240, 0.99) 100%);
    padding: 4.5rem 4rem;
    border-radius: 40px;
    box-shadow: 
        0 40px 80px rgba(27, 54, 93, 0.15),
        0 20px 40px rgba(27, 54, 93, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 3px solid rgba(27, 54, 93, 0.15);
    backdrop-filter: blur(30px);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue), var(--primary-blue));
    z-index: 1;
    border-radius: 40px 40px 0 0;
}

.form-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(27, 54, 93, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(27, 54, 93, 0.02) 0%, transparent 50%);
    z-index: -1;
}

/* Removed duplicate rule */

.form-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.form-title {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(27, 54, 93, 0.2);
    line-height: 1;
    position: relative;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(27, 54, 93, 0.3);
}

.form-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 500;
    opacity: 0.9;
    max-width: 90%;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 8px rgba(27, 54, 93, 0.1);
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 1.4rem 1.2rem;
    border: 2px solid rgba(27, 54, 93, 0.15);
    border-radius: 18px;
    font-size: 1.05rem;
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 3px rgba(0, 0, 0, 0.02);
    font-weight: 500;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 
        0 0 25px rgba(27, 54, 93, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 1);
}

.sports-subtitle {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.sport-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sport-option:hover {
    border-color: var(--primary-blue);
    background: rgba(27, 54, 93, 0.05);
}

.sport-option input[type="checkbox"] {
    display: none;
}

.sport-option input[type="checkbox"]:checked + .sport-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(27, 54, 93, 0.3);
}

.sport-icon {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.sport-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sport-option span {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--primary-blue) 100%);
    color: var(--white);
    border: none;
    padding: 2.2rem 2.5rem;
    border-radius: 70px;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    box-shadow: 
        0 25px 50px rgba(27, 54, 93, 0.4),
        0 8px 20px rgba(27, 54, 93, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(27, 54, 93, 0.4);
    border-color: var(--white);
}

.submit-btn:hover::before {
    left: 100%;
}

.btn-text {
    font-size: 1rem;
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(27, 54, 93, 0.1);
}

.form-footer p {
    color: var(--text-dark);
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Discord Section - Sportzey Style */
.discord-section {
    background: var(--primary-beige);
    padding: 6rem 0;
    position: relative;
}

.discord-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(27, 54, 93, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(27, 54, 93, 0.03) 0%, transparent 50%),
        var(--primary-beige);
    z-index: -1;
}

.discord-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.98);
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(27, 54, 93, 0.08);
    backdrop-filter: blur(20px);
}

.discord-header {
    margin-bottom: 3rem;
}

.discord-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 3px 15px rgba(27, 54, 93, 0.15);
    line-height: 1.1;
}

.discord-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 500;
    opacity: 0.9;
}

/* Removed elaborate Discord features - keeping it simple */

.discord-action {
    text-align: center;
    margin-top: 1rem;
}

.discord-btn {
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 15px 30px rgba(27, 54, 93, 0.3);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.discord-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.discord-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(27, 54, 93, 0.4);
    border-color: var(--white);
}

.discord-btn:hover::before {
    left: 100%;
}

.discord-note {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--primary-beige);
    margin: 15% auto;
    padding: 3rem;
    border-radius: 25px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInScale 0.3s ease-out;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: iconFloat 2s ease-in-out infinite;
}

.modal-content h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.modal-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.loading {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Container optimizations */
    .container {
        padding: 0 1rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 3rem 0 2rem 0;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 1rem;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 0.5rem;
    }
    
    .logo-hero {
        width: 80px;
        height: 80px;
    }
    
    .hero-text {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
        text-align: center;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        text-align: center;
        line-height: 1.4;
    }
    
    /* Hero Stats Mobile - Horizontal Strip Design */
    .hero-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
        margin: 2rem auto 0;
        max-width: 100%;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    
    .stat-item {
        background: var(--white);
        border: 2px solid var(--sportzey-beige-dark);
        border-radius: 16px;
        padding: 1rem 1.2rem;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        gap: 0.8rem;
        min-width: 150px;
        width: calc(50% - 0.4rem);
        min-height: 70px;
        flex: 0 0 auto;
    }
    
    .stat-item.highlight {
        background: var(--sportzey-black);
        color: var(--white);
        border-color: var(--sportzey-black);
        width: 100%;
        max-width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        min-height: 70px;
    }
    
    .stat-icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .stat-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        min-width: 0;
    }
    
    .stat-item.highlight .stat-content {
        align-items: center;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--sportzey-black);
        margin: 0;
        line-height: 1;
        white-space: nowrap;
    }
    
    .stat-item.highlight .stat-number {
        color: var(--white);
    }
    
    .stat-label {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--sportzey-black);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin: 0;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .stat-item.highlight .stat-label {
        color: var(--white);
    }
    
    /* Main Content Mobile */
    .main-content-section {
        padding: 4rem 0 5rem 0;
    }
    
    .main-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    /* Content sections mobile */
    .content-section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    
    .content-section-title::after {
        width: 60px;
        height: 3px;
    }
    
    /* Benefits Grid Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        margin-bottom: 0;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    /* Journey Section Mobile */
    .journey-section {
        padding: 2rem 1rem;
        border-radius: 20px;
    }
    
    .journey-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .journey-timeline {
        flex-direction: column;
        padding: 0;
        gap: 1.5rem;
    }
    
    .journey-timeline::before {
        display: none;
    }
    
    .timeline-step {
        width: 100%;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .timeline-connector {
        display: none;
    }
    
    /* Form Mobile Optimizations */
    .content-right {
        position: static;
        padding: 0;
    }
    
    .form-wrapper {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
        margin-top: 2rem;
    }
    
    .form-header {
        margin-bottom: 2.5rem;
    }
    
    .form-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        letter-spacing: -1px;
        line-height: 1.1;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    /* Form Row Mobile - Stack vertically */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.6rem;
        letter-spacing: 0.5px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"] {
        padding: 1.2rem 1rem;
        border-radius: 12px;
        font-size: 1rem;
        /* Optimize for mobile keyboards */
        -webkit-appearance: none;
        appearance: none;
    }
    
    /* Sports Grid Mobile */
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .sport-option {
        padding: 0.8rem 0.5rem;
        border-radius: 10px;
        gap: 0.6rem;
    }
    
    .sport-icon {
        width: 40px;
        height: 40px;
    }
    
    .sport-option span {
        font-size: 0.8rem;
    }
    
    /* Submit Button Mobile */
    .submit-btn {
        padding: 1.8rem 2rem;
        border-radius: 50px;
        font-size: 1.1rem;
        letter-spacing: 1px;
        gap: 1rem;
        /* Optimize for touch */
        min-height: 60px;
        touch-action: manipulation;
    }
    
    .btn-text {
        font-size: 0.95rem;
    }
    
    .btn-icon {
        font-size: 1.1rem;
    }
    
    .form-footer {
        margin-top: 1.2rem;
        padding-top: 1.2rem;
    }
    
    .form-footer p {
        font-size: 0.75rem;
    }
    
    /* Discord Section Mobile */
    .discord-section {
        padding: 4rem 0;
    }
    
    .discord-content {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
        margin: 0 1rem;
    }
    
    .discord-header {
        margin-bottom: 2rem;
    }
    
    .discord-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        letter-spacing: -0.5px;
    }
    
    .discord-subtitle {
        font-size: 1rem;
    }
    
    .discord-btn {
        padding: 1.2rem 2rem;
        border-radius: 40px;
        font-size: 1rem;
        letter-spacing: 0.5px;
        gap: 0.6rem;
        /* Optimize for touch */
        min-height: 56px;
    }
    
    .discord-note {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
    
    /* Modal Mobile */
    .modal-content {
        margin: 20% auto;
        padding: 2rem 1.5rem;
        border-radius: 16px;
        width: 95%;
        max-width: 400px;
    }
    
    .modal-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .modal-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .modal-content p {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .loading {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
}

/* Mobile Touch Interactions & Enhancements */
@media (max-width: 768px) {
    /* Enhanced button interactions */
    .submit-btn:active,
    .discord-btn:active {
        transform: translateY(-4px) scale(0.98);
        transition: all 0.02s ease-out;
    }
    
    /* Sport option touch feedback */
    .sport-option:active {
        transform: scale(0.95);
        background: rgba(26, 26, 26, 0.1);
        transition: all 0.02s ease-out;
    }
    
    .sport-option input[type="checkbox"]:checked + .sport-icon {
        transform: scale(1.05);
        filter: drop-shadow(0 4px 12px rgba(26, 26, 26, 0.3));
    }
    
    /* Enhanced form input interactions */
    .form-group input[type="text"]:focus,
    .form-group input[type="email"]:focus {
        transform: translateY(-2px);
        box-shadow: 
            0 0 20px rgba(26, 26, 26, 0.15),
            0 6px 16px rgba(0, 0, 0, 0.06);
    }
    
    /* Benefit card mobile interactions */
    .benefit-card:active {
        transform: translateY(-4px) scale(0.98);
        transition: all 0.02s ease-out;
    }
    
    /* Timeline step mobile interactions */
    .timeline-step:active {
        transform: translateY(-2px) scale(0.98);
        transition: all 0.02s ease-out;
    }
    
    /* Mobile keyboard optimizations */
    .form-group input[type="text"],
    .form-group input[type="email"] {
        /* Prevent zoom on focus */
        font-size: 16px;
        /* Optimize input type for mobile keyboards */
        autocomplete: "on";
        autocorrect: "on";
        autocapitalize: "words";
    }
    
    .form-group input[type="email"] {
        autocapitalize: "none";
        inputmode: "email";
    }
    
    /* Enhanced scrolling */
    .main-content-section,
    .hero,
    .discord-section {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobile-specific animations */
    .stat-item {
        animation: fadeInUp 0.6s ease-out backwards;
    }
    
    .stat-item:nth-child(1) { animation-delay: 0.1s; }
    .stat-item:nth-child(2) { animation-delay: 0.2s; }
    .stat-item:nth-child(3) { animation-delay: 0.3s; }
    .stat-item:nth-child(4) { animation-delay: 0.4s; }
    
    .benefit-card {
        animation: fadeInUp 0.8s ease-out backwards;
    }
    
    .benefit-card:nth-child(1) { animation-delay: 0.2s; }
    .benefit-card:nth-child(2) { animation-delay: 0.4s; }
    .benefit-card:nth-child(3) { animation-delay: 0.6s; }
    .benefit-card:nth-child(4) { animation-delay: 0.8s; }
    
    .timeline-step {
        animation: fadeInUp 0.6s ease-out backwards;
    }
    
    .timeline-step:nth-child(1) { animation-delay: 0.3s; }
    .timeline-step:nth-child(2) { animation-delay: 0.5s; }
    .timeline-step:nth-child(3) { animation-delay: 0.7s; }
    
    /* Form entrance animation */
    .form-wrapper {
        animation: fadeInUp 1s ease-out backwards;
        animation-delay: 0.5s;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Medium Mobile Phones (between 481px and 600px) */
@media (max-width: 600px) and (min-width: 481px) {
    .hero-stats {
        gap: 0.6rem;
    }
    
    .stat-item {
        padding: 0.9rem 1rem;
        min-width: 140px;
        width: calc(50% - 0.3rem);
        min-height: 65px;
        gap: 0.6rem;
    }
    
    .stat-item.highlight {
        margin-top: 0.4rem;
        width: 100%;
        min-height: 65px;
    }
    
    .stat-icon {
        width: 28px;
        height: 28px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .sports-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .sport-option {
        max-width: 90px;
    }
    
    .sport-icon {
        width: 38px;
        height: 38px;
    }
}

/* Ultra-Mobile Optimizations (phones in portrait) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 2rem 0 1.5rem 0;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .hero-logo {
        margin-bottom: 0.3rem;
    }
    
    .logo-hero {
        width: 70px;
        height: 70px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 0.6rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        text-align: center;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .hero-stats {
        gap: 0.5rem;
        margin: 1.5rem auto 0;
    }
    
    .stat-item {
        padding: 0.8rem 0.9rem;
        min-width: 130px;
        width: calc(50% - 0.25rem);
        min-height: 60px;
        gap: 0.5rem;
    }
    
    .stat-item.highlight {
        margin-top: 0.3rem;
        width: 100%;
        min-height: 60px;
    }
    
    .stat-icon {
        width: 24px;
        height: 24px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
        line-height: 1.1;
    }
    
    .form-wrapper {
        padding: 2rem 1rem;
        border-radius: 16px;
        margin: 0 0.5rem;
    }
    
    .form-title {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .form-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .sports-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
        justify-items: center;
    }
    
    .sport-option {
        padding: 0.6rem 0.3rem;
        width: 100%;
        max-width: 80px;
        text-align: center;
    }
    
    .sport-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto;
    }
    
    .sport-option span {
        font-size: 0.7rem;
        text-align: center;
    }
    
    .submit-btn {
        padding: 1.5rem 1.5rem;
        font-size: 1rem;
        text-align: center;
    }
    
    .discord-content {
        margin: 0 0.5rem;
        padding: 2rem 1rem;
    }
    
    .discord-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .discord-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1200px) and (min-width: 769px) {
    .main-content-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        max-width: 800px;
        margin: 2rem auto 0;
    }
    
    .form-wrapper {
        padding: 3rem 2.5rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .discord-section {
        padding: 6rem 0;
    }
    
    .discord-title {
        font-size: 2.2rem;
    }
    
    .discord-content {
        padding: 3.5rem 2.5rem;
        max-width: 700px;
    }
}


