
        /* Team Section */
        .team {
            padding: 5rem 5%;
            background-color: #0a0a0a;
        }
        
        .players-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .player-card {
            background-color: var(--secondary);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .player-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 69, 0, 0.2);
        }
        
        .player-image {
            position: relative;
            height: 300px;
            overflow: hidden;
        }
        
        .player-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .player-card:hover .player-image img {
            transform: scale(1.1);
        }
        
        .player-info {
            padding: 1.5rem;
            text-align: center;
        }
        
        .player-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .player-role {
            color: var(--primary);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }
        
        .player-stats {
            display: flex;
            justify-content: space-around;
            margin-bottom: 1rem;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
        }
        
        .stat-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
            text-transform: uppercase;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .social-icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        
        .social-icon:hover {
            background-color: var(--primary);
        }
        
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #ff5722;
            --secondary: #2d3436;
            --accent: #fdcb6e;
            --dark: #1e272e;
            --light: #f5f6fa;
        }

        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Header Styles */
        header {
            background-color: rgba(0, 0, 0, 0.8);
            position: fixed;
            width: 100%;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light);
        }

        .logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 1.5rem;
            position: relative;
        }

        .nav-links a {
            color: var(--light);
            font-weight: 600;
            transition: color 0.3s;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: var(--primary);
            bottom: -5px;
            left: 0;
        }

        .btn {
            padding: 0.6rem 1.5rem;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--light);
        }

        .btn-primary:hover {
            background-color: #e64210;
            transform: translateY(-2px);
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 1rem;
        }


        .hero-content {
            max-width: 800px;
        }

        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #ddd;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        /* Featured Section */
        .featured {
            padding: 5rem 1rem;
            background-color: var(--secondary);
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-header p {
            color: #aaa;
            max-width: 600px;
            margin: 0 auto;
        }

        .achievements {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .achievement {
            text-align: center;
            margin: 1rem;
            flex: 1 1 250px;
            max-width: 300px;
            background-color: rgba(0,0,0,0.3);
            padding: 2rem;
            border-radius: 8px;
            transition: transform 0.3s;
        }

        .achievement:hover {
            transform: translateY(-10px);
        }

        .achievement i {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .achievement h4 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .achievement p {
            color: #bbb;
        }

        /* Player Stats */
        .player-stats {
            display: flex;
            justify-content: space-around;
            margin-bottom: 1rem;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
        }
        
        .stat-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
            text-transform: uppercase;
        }

        /* Latest News */
        .news {
            padding: 5rem 1rem;
            background-color: var(--dark);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .news-card {
            background-color: var(--secondary);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-5px);
        }

        .news-img {
            height: 200px;
            position: relative;
            overflow: hidden;
        }

        .news-img img {
            width: 100%;
            height: 130%;
            object-fit: cover; /* This prevents stretching */
            object-position: center;
            transition: transform 0.3s ease;
        }

        .news-card:hover .news-img img {
            transform: scale(1.05); /* Subtle zoom effect on hover */
        }

        .news-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .news-date {
            color: var(--accent);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .news-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .news-excerpt {
            color: #bbb;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            flex-grow: 1;
        }

        .read-more {
            color: var(--primary);
            font-weight: 600;
            display: inline-block;
            transition: color 0.3s;
            align-self: flex-start;
        }

        .read-more:hover {
            color: var(--accent);
        }

        /* Values Section */
        .values {
            padding: 5rem 1rem;
            background-color: var(--dark);
        }

        .values-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .value-card {
            text-align: center;
            padding: 2rem;
            background-color: rgba(0,0,0,0.3);
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            transition: transform 0.3s;
        }

        .value-card:hover {
            transform: translateY(-5px);
        }

        .value-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        .value-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--light);
        }

        .value-desc {
            color: #bbb;
            font-size: 0.95rem;
        }

        /* About Section */
        .about-section {
            padding: 5rem 1rem;
            background-color: var(--secondary);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
        }

        .about-image {
            flex: 1 1 400px;
            height: 400px;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-content {
            flex: 1 1 500px;
        }

        .about-content h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-content p {
            margin-bottom: 1.5rem;
            color: #ddd;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #0a0a0a;
            color: var(--light);
        }

        .history {
            padding: 5rem 1rem;
            background-color: var(--secondary);
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-header p {
            color: #aaa;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Desktop Timeline (default) */
        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            width: 2px;
            height: 100%;
            background-color: var(--primary);
            left: 50%;
            transform: translateX(-50%);
            z-index: 0;
        }

        .timeline-item {
            width: 100%;
            margin-bottom: 3rem;
            position: relative;
            clear: both;
        }

        .timeline-content {
            position: relative;
            width: 45%;
            padding: 2rem;
            background-color: rgba(0,0,0,0.3);
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            z-index: 1;
        }

        .timeline-item:nth-child(even) .timeline-content {
            float: right;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            float: left;
        }

        .timeline-date {
            position: absolute;
            top: 0;
            background-color: var(--primary);
            color: var(--light);
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 4px;
        }

        .timeline-item:nth-child(even) .timeline-date {
            left: 0;
            border-radius: 0 4px 4px 0;
        }

        .timeline-item:nth-child(odd) .timeline-date {
            right: 0;
            border-radius: 4px 0 0 4px;
        }

        .timeline-marker {
            position: absolute;
            width: 16px;
            height: 16px;
            background-color: var(--accent);
            border-radius: 50%;
            top: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }

        .timeline-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--light);
            padding-top: 1.5rem;
        }

        .timeline-desc {
            color: #bbb;
        }

        /* Clearfix for timeline items */
        .timeline-item::after {
            content: '';
            display: table;
            clear: both;
        }

        /* Mobile Timeline (stacked version) */
        @media (max-width: 768px) {
            .timeline::before {
                display: none; /* Remove vertical line completely */
            }

            .timeline-item {
                margin-bottom: 2rem;
                border-left: 2px solid var(--primary);
                padding-left: 20px;
            }

            .timeline-content {
                width: 100%;
                float: none;
                margin-left: 0;
            }

            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                float: none;
            }

            .timeline-marker {
                left: -8px;
                top: 2rem;
            }

            .timeline-date {
                position: relative;
                top: 0;
                left: 0;
                right: auto;
                margin-bottom: 0;
                display: inline-block;
                border-radius: 4px;
            }

            .timeline-item:nth-child(odd) .timeline-date,
            .timeline-item:nth-child(even) .timeline-date {
                left: 0;
                right: auto;
                border-radius: 4px;
            }
        }

        @media (max-width: 480px) {
            .section-header h3 {
                font-size: 1.5rem;
            }

            .timeline-content {
                padding: 1.5rem;
            }
        }

         /* Mission & Vision */
         .mission-vision {
            padding: 5rem 1rem;
            background-color: var(--dark);
        }

        .mission-vision-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .mission-box, .vision-box {
            padding: 2.5rem;
            background-color: rgba(0,0,0,0.3);
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .mission-box h3, .vision-box h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            text-transform: uppercase;
            display: flex;
            align-items: center;
        }

        .mission-box h3 i, .vision-box h3 i {
            margin-right: 1rem;
            font-size: 2rem;
            color: var(--accent);
        }

        .mission-box p, .vision-box p {
            color: #ddd;
        }

        /* Call to Action */
        .cta {
            padding: 5rem 1rem;
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('/api/placeholder/1600/600') center/cover no-repeat;
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--light);
        }

        .cta p {
            color: #bbb;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        /* Footer */
        footer {
            background-color: #121212;
            padding: 4rem 1rem 2rem;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            gap: 2rem;
        }

        .footer-column {
            flex: 1 1 250px;
        }

        .footer-logo {
            margin-bottom: 1.5rem;
        }

        .footer-logo h2 {
            font-size: 1.8rem;
            color: var(--light);
        }

        .footer-logo span {
            color: var(--primary);
        }

        .footer-about p {
            color: #999;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .footer-socials {
            display: flex;
            gap: 1rem;
        }

        .footer-socials a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--light);
            transition: all 0.3s;
        }

        .footer-socials a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--light);
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #999;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            color: #999;
        }

        .footer-contact-item i {
            margin-right: 1rem;
            color: var(--primary);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #777;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media screen and (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: rgba(0,0,0,0.95);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.5s;
                z-index: 99;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 1.5rem 0;
            }

            .mobile-menu {
                display: block;
            }

            .hero h2 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .btn {
                width: 100%;
                text-align: center;
            }
        }

        /* Members Page Specific Styles */
        .members-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1200/400') center/cover;
            color: #fff;
            text-align: center;
            padding: 100px 20px;
            margin-bottom: 50px;
        }
        
        .members-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .members-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .team-section {
            padding: 50px 20px;
        }
        
        .team-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .team-category {
            margin-bottom: 60px;
        }
        
        .team-category h2 {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: #ff5722;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 15px;
        }
        
        .team-category h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: #ff5722;
        }
        
        .team-category p {
            text-align: center;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .members-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .member-card {
            background-color: #1a1a1a;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .member-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        
        .member-image {
            height: 280px;
            position: relative;
            overflow: hidden;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .member-image .role-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: #ff5722;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .member-info {
            padding: 20px;
        }
        
        .member-info h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: #fff;
        }
        
        .member-info .gamer-tag {
            color: #ff5722;
            font-weight: bold;
            margin-bottom: 15px;
            display: block;
        }
        
        .member-info p {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #ccc;
        }
        
        .member-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #333;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ff5722;
        }
        
        .stat-label {
            font-size: 0.8rem;
            color: #999;
            text-transform: uppercase;
        }
        
        .member-socials {
            display: flex;
            margin-top: 20px;
            justify-content: center;
            gap: 15px;
        }
        
        .member-socials a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: background-color 0.3s ease;
        }
        
        .member-socials a:hover {
            background-color: #ff5722;
        }
        
        .join-team-banner {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('/api/placeholder/1200/300') center/cover;
            padding: 60px 20px;
            text-align: center;
            margin-top: 50px;
        }
        
        .join-team-banner h2 {
            color: #fff;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .join-team-banner p {
            color: #ccc;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        @media (max-width: 768px) {
            .members-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .members-hero h1 {
                font-size: 2.5rem;
            }
        }

        /* Join Page Specific Styles */
        .join-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/join-bg.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 20px;
        }
        
        .join-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .join-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .join-container {
            max-width: 800px;
            margin: 50px auto;
            padding: 0 20px;
        }
        
        .requirements {
            background-color: #222;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 40px;
        }
        
        .requirements h2 {
            color: #ff5722;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .requirements ul {
            list-style: none;
            padding: 0;
        }
        
        .requirements li {
            padding: 10px 0;
            border-bottom: 1px solid #333;
            display: flex;
            align-items: center;
        }
        
        .requirements li:before {
            content: "✓";
            color: #ff5722;
            margin-right: 10px;
            font-weight: bold;
        }
        
        .application-form {
            background-color: #222;
            border-radius: 8px;
            padding: 30px;
        }
        
        .application-form h2 {
            color: #ff5722;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border-radius: 4px;
            border: 1px solid #333;
            background-color: #333;
            color: white;
        }
        
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        
        .form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-position: right 12px top 50%;
            background-size: 12px auto;
            padding-right: 30px;
        }
        
        .checkbox-group {
            margin-bottom: 20px;
        }
        
        .checkbox-group label {
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        
        .checkbox-group input {
            margin-right: 10px;
            width: auto;
        }
        
        .btn-submit {
            background-color: #ff5722;
            border: none;
            color: white;
            padding: 12px 24px;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            text-transform: uppercase;
            display: block;
            width: 100%;
        }
        
        .btn-submit:hover {
            background-color: #e64210;
        }
        
        .form-note {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #999;
            text-align: center;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .join-hero h1 {
                font-size: 2.5rem;
            }
            
            .join-hero p {
                font-size: 1rem;
            }
            
            .join-container {
                padding: 0 15px;
            }
            
            .requirements, .application-form {
                padding: 20px;
            }
        }

        /* Thank You Page Specific Styles */
        .thank-you-container {
            max-width: 800px;
            margin: 80px auto;
            padding: 0 20px;
            text-align: center;
        }
        
        .thank-you-card {
            background-color: #222;
            border-radius: 8px;
            padding: 50px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .thank-you-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #f44336, #ff9800);
        }
        
        .thank-you-icon {
            font-size: 60px;
            color: #f44336;
            margin-bottom: 20px;
        }
        
        .thank-you-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .thank-you-message {
            font-size: 1.1rem;
            color: #ccc;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .next-steps {
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 6px;
            padding: 20px;
            margin: 30px 0;
        }
        
        .next-steps h3 {
            color: #ff5722;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .next-steps ol {
            text-align: left;
            padding-left: 20px;
            margin: 0 auto;
            max-width: 500px;
        }
        
        .next-steps li {
            padding: 8px 0;
            color: #ddd;
        }
        
        .btn-home {
            background-color: #ff5722;
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            display: inline-block;
            transition: background-color 0.3s;
            margin-top: 20px;
        }
        
        .btn-home:hover {
            background-color: #e64210;
        }
        
        .social-prompt {
            margin-top: 40px;
            color: #999;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #333;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: transform 0.3s, background-color 0.3s;
        }
        
        .social-icons a:hover {
            transform: translateY(-3px);
            background-color: #e64210;
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .thank-you-card {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .thank-you-container {
                margin: 50px auto;
            }
            
            .thank-you-title {
                font-size: 2rem;
            }
            
            .thank-you-card {
                padding: 40px 20px;
            }
        }

        /* Achievements Coming Soon Section */
.achievements-coming-soon {
    padding: 80px 0;
    background-color: #000000;
    color: #e0e0e0;
}

.coming-soon-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 40px;
}

.coming-soon-content {
    flex: 3;
    min-width: 300px;
}

.coming-soon-content h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.coming-soon-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 70%;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 25px;
}

.future-goals {
    background-color: rgba(69, 123, 157, 0.15);
    border-left: 4px solid var(--accent-color);
    padding: 20px 25px;
    border-radius: 0 5px 5px 0;
    margin: 30px 0;
}

.future-goals h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.future-goals ul {
    list-style: none;
    padding-left: 10px;
}

.future-goals ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #d0d0d0;
}

.future-goals ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.join-training {
    margin-top: 40px;
}

.join-training h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.join-training .btn-primary {
    margin-top: 20px;
}

.trophy-placeholder {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(29, 53, 87, 0.2), rgba(230, 57, 70, 0.2));
    border: 1px dashed rgba(230, 57, 70, 0.4);
}

.trophy-placeholder i {
    font-size: 8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.9;
    filter: drop-shadow(0 10px 15px rgba(230, 57, 70, 0.5));
    animation: float 3s ease-in-out infinite;
}

.trophy-placeholder p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.achievements-coming-soon .section-title {
    color: #ffffff;
}

 /* Merchandise-specific styles */
 .coming-soon-container1 {
    text-align: center;
    padding: 100px 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
    margin: 50px auto;
    max-width: 1200px;
}

.coming-soon-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
}

.coming-soon-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #666;
}

.countdown {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.countdown-item {
    margin: 0 20px;
    text-align: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    background-color: #333;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
    display: inline-block;
}

.countdown-label {
    margin-top: 10px;
    font-size: 1rem;
    color: #666;
}

.merch-teaser {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
}

.merch-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 250px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.merch-item img {
    max-width: 80%;
    max-height: 80%;
}

.merch-item .coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ff5722;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

.notification-form {
    margin-top: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.notification-form input {
    width: 70%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.notification-form button {
    padding: 12px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.notification-form button:hover {
    background-color: #555;
}

.social-share {
    margin-top: 40px;
}

.social-share p {
    margin-bottom: 15px;
    color: #666;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff5722;
}

@media (max-width: 768px) {
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        margin: 10px;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.2rem;
    }
}