
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Font Classes */
.font-gaming {
    font-family: 'Orbitron', monospace;
}

.font-body {
    font-family: 'Roboto', sans-serif;
}

/* Utility Classes */
.min-h-screen {
    min-height: 100vh;
}

.bg-black {
    background-color: #000000;
}

.text-white {
    color: #ffffff;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

/* Glow Effects */
.glow-purple {
    box-shadow: 0 0 20px #5205BD, 0 0 40px #5205BD, 0 0 60px #5205BD;
}

.glow-red {
    box-shadow: 0 0 20px #FF0000, 0 0 40px #FF0000;
}

.text-glow {
    text-shadow: 0 0 10px #5205BD, 0 0 20px #5205BD, 0 0 30px #5205BD;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    font-family: 'Orbitron', monospace;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom-color: #333;
    box-shadow: 0 2px 20px rgba(82, 5, 189, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.nav-logo {
    flex-shrink: 0;
    width: auto;
}
.logo {
    
    width: 48px;
    height: 48px;
    object-fit: contain;

}

.TE-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    background: whitesmoke;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(82, 5, 189, 0.5);
    border: none;
    cursor: pointer;
}

.logo-text:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    position: relative;
    color: #ffffff;
    background: none;
    border: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5205BD, #FF0000);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #5205BD;
    text-shadow: 0 0 10px #5205BD, 0 0 20px #5205BD;
}

.nav-link:hover::after {
    width: 100%;
}

.join-btn {
    background: linear-gradient(45deg, #FF0000, #CC0000);
    border: 2px solid #FF0000;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.join-btn:hover {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000000;
    border-top: 1px solid #333;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: #ffffff;
    background: none;
    border: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.75rem 0;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    text-align: left;
    width: 100%;
}

.mobile-nav-link:hover {
    color: #5205BD;
    text-shadow: 0 0 10px #5205BD;
}

.mobile-join {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem;
}

.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(45deg, #5205BD, #7B2CBF);
    border: 2px solid #5205BD;
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #7B2CBF, #5205BD);
    box-shadow: 0 0 30px rgba(82, 5, 189, 0.8);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #FF0000;
    color: #FF0000;
    padding: 0.75rem 2rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #FF0000;
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    transform: translateY(-2px);
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Card Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(82, 5, 189, 0.3);
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch:before,
.glitch:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glitch:hover:before {
    opacity: 1;
    color: #ffffff;
    animation: glitch-1 0.3s ease-in-out;
}

.glitch:hover:after {
    opacity: 1;
    color: #ffffff;
    animation: glitch-2 0.3s ease-in-out;
}

/* Section Layouts */
.section-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(147, 51, 234, 0.5), rgba(0, 0, 0, 1), rgba(185, 28, 28, 0.3));
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 6rem;
    font-weight: 900;
    text-shadow: 0 0 10px #5205BD, 0 0 20px #5205BD, 0 0 30px #5205BD;
}

.hero-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #a855f7;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-btn {
    background: none;
    border: none;
    color: #a855f7;
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-btn:hover {
    color: #c084fc;
}

.scroll-icon {
    width: 2rem;
    height: 2rem;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40%, 43% {
        transform: translateX(-50%) translateY(-30px);
    }
    70% {
        transform: translateX(-50%) translateY(-15px);
    }
    90% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* About Section */
.about-section {
    padding: 5rem 1rem;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.8;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid;
    transition: all 0.3s ease;
}

.purple-card {
    background: linear-gradient(to bottom right, rgba(147, 51, 234, 0.5), rgba(0, 0, 0, 1));
    border-color: rgba(168, 85, 247, 0.3);
}

.red-card {
    background: linear-gradient(to bottom right, rgba(185, 28, 28, 0.5), rgba(0, 0, 0, 1));
    border-color: rgba(239, 68, 68, 0.3);
}

.yellow-card {
    background: linear-gradient(to bottom right, rgba(180, 83, 9, 0.5), rgba(0, 0, 0, 1));
    border-color: rgba(251, 191, 36, 0.3);
}

.card-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.purple-icon {
    color: #a855f7;
}

.red-icon {
    color: #f87171;
}

.yellow-icon {
    color: #fbbf24;
}

.icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto;
}

.card-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.card-description {
    font-family: 'Roboto', sans-serif;
    color: #d1d5db;
    text-align: center;
    line-height: 1.6;
}

/* Tournaments Section */
.tournaments-section {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, rgba(147, 51, 234, 0.1), rgba(0, 0, 0, 1));
}

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

.countdown-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #a855f7;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(147, 51, 234, 0.5);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.countdown-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.875rem;
    color: white;
    font-weight: 700;
}

.countdown-label {
    font-family: 'Roboto', sans-serif;
    color: #c084fc;
}

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

.tournament-card {
    background: linear-gradient(to bottom right, #1f2937, #000000);
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.tournament-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(82, 5, 189, 0.3);
}

.tournament-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #a855f7;
}

.tournament-details {
    margin-bottom: 1.5rem;
}

.tournament-detail {
    font-family: 'Roboto', sans-serif;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.detail-label {
    color: #c084fc;
}

.prize-label {
    color: #10b981;
}

.tournament-btn {
    width: 100%;
    padding: 0.75rem;
    font-family: 'Orbitron', monospace;
    border-radius: 0.5rem;
}

/* Highlights Section */
.highlights-section {
    padding: 5rem 1rem;
}

.gallery-container {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

.gallery-image-container {
    overflow: hidden;
    border-radius: 0.5rem;
}

.gallery-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(147, 51, 234, 0.8);
    border: none;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.gallery-btn:hover {
    background: rgba(147, 51, 234, 1);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

.gallery-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
}

.gallery-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: #8b5cf6;
}

.gallery-dot:not(.active) {
    background: #4b5563;
}

/* Rewards Section */
.rewards-section {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, rgba(185, 28, 28, 0.1), rgba(0, 0, 0, 1));
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.reward-item {
    background: linear-gradient(to bottom right, #1f2937, #000000);
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.reward-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(82, 5, 189, 0.3);
}

.reward-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.reward-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.125rem;
    color: #a855f7;
}

.shop-button-container {
    text-align: center;
}

/* Community Section */
.community-section {
    padding: 5rem 1rem;
}

.community-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: center;
}

.community-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.community-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.link {
color: red;
}

.community-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.instagram-placeholder {
    background: linear-gradient(to bottom right, rgba(147, 51, 234, 0.3), #1f2937);
    border-radius: 0.5rem;
    padding: 1rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-icon {
    width: 3rem;
    height: 3rem;
    color: #6b7280;
}

/* Sponsors Section */
.sponsors-section {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, rgba(147, 51, 234, 0.1), rgba(0, 0, 0, 1));
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.sponsor-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6rem;
    transition: all 0.3s ease;
}

.sponsor-card:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sponsor-text {
    color: #9ca3af;
    font-family: 'Orbitron', monospace;
    font-size: 0.875rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 1rem;
    text-align: center;
}

.newsletter-content {
    max-width: 64rem;
    margin: 0 auto;
}

.newsletter-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 28rem;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    color: white;
    font-family: 'Roboto', sans-serif;
}

.newsletter-input:focus {
    border-color: #8b5cf6;
    outline: none;
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    font-family: 'Orbitron', monospace;
    border-radius: 0.5rem;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid #374151;
    padding: 3rem 1rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
}

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

.footer-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #a855f7;
    margin-bottom: 1rem;
}

.footer-description {
    font-family: 'Roboto', sans-serif;
    color: #9ca3af;
}

.footer-heading {
    font-family: 'Orbitron', monospace;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    font-family: 'Roboto', sans-serif;
    color: #9ca3af;
    text-decoration: none;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #a855f7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #a855f7;
}

.social-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-info {
    font-family: 'Roboto', sans-serif;
    color: #9ca3af;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    font-family: 'Roboto', sans-serif;
    color: #6b7280;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .community-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 8rem;
    }
    
    .hero-subtitle {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .nav-content {
        height: 3.5rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .community-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1rem;
    }
    
    .hamburger {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #5205BD, #FF0000);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #7B2CBF, #FF3333);
}