* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0d0e10;
    color: #e6edf3;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffae58;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 968px) {
    nav {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: none !important;
        border-radius: 0 !important;
        padding: 1rem 1.5rem !important;
        background: rgb(14 14 14 / 95%) !important;
        z-index: 1001 !important;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .nav-links {
        display: flex !important;
        position: fixed !important;
        right: -100% !important;
        top: 0 !important;
        height: 100vh !important;
        width: 75% !important;
        max-width: 320px !important;
        background: rgba(13, 14, 16, 0.98) !important;
        backdrop-filter: blur(12px) !important;
        flex-direction: column !important;
        padding: 5rem 2rem 2rem !important;
        gap: 2.5rem !important;
        border-left: 1px solid rgba(255, 174, 88, 0.3) !important;
        transition: right 0.4s ease !important;
        z-index: 1000 !important;
    }
    
    .nav-links.active {
        right: 0 !important;
    }
    
    .nav-links a {
        font-size: 1.2rem !important;
        padding: 0.75rem 0 !important;
    }
    
    .hero {
        padding-top: 70px !important;
    }
    
    .hero-content {
        padding-top: 1rem !important;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .btn-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background: rgba(20, 21, 24, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 174, 88, 0.3);
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
}

.toast.show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.toast-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffae58, #ffd3b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0d0e10;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e6edf3;
    margin-bottom: 0.25rem;
}

.toast-message {
    font-size: 0.85rem;
    color: #ffae58;
    font-family: monospace;
    font-weight: 500;
}

@media (max-width: 500px) {
    .toast {
        right: 20px;
        left: 20px;
        min-width: auto;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 900px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 174, 88, 0.2);
    border-radius: 50px;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.75rem 2rem;
}

nav.scrolled {
    background: rgb(14 14 14 / 70%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 174, 88, 0.3);
    border: 1px solid rgba(255, 174, 88, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding: 0;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(138deg, #ef7b26, #ffd3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #8b949e;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #ffae58;
}



/* Hero */
.hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin: 0;
    padding: 0;
    background: 
linear-gradient(180deg, rgb(16 14 11 / 45%) 0%, #0d0e10 100%), url(https://media.indiedb.com/images/games/1/70/69225/11.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgb(61 56 48 / 15%) 1px, transparent 1px), linear-gradient(90deg, rgb(61 55 48 / 15%) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.8;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    margin: 0 auto;
}

/* Countdown Timer - Unique Design */
.countdown-container {
    margin: 3rem 0;
}

.countdown-title {
    font-size: 0.8rem;
    color: #ffae58;
    margin-bottom: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.countdown {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(135deg, rgb(242 143 70 / 12%), rgb(252 192 148 / 0%));
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    min-width: 95px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgb(0 0 0 / 29%);
}

.countdown-number {
    font-size: 2.75rem;
    font-weight: 700;
    color: #ffae58;
    display: block;
    line-height: 1;
    margin-bottom: 0.6rem;
}

.countdown-label {
    font-size: 0.75rem;
    color: #8b949e;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

/* Updated Buttons */
.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-discord {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.35);
}

.btn-server-ip {
background: rgb(34 29 22 / 95%);
    color: #f3f0e6;
    border: 1px solid rgb(255 187 88 / 25%);
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-server-ip:hover {
    background: rgb(42 37 30 / 95%);
    border-color: #ffa858;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgb(255 180 88 / 20%);
}

.server-ip-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.ip-label {
    font-size: 0.65rem;
    color: #ffb658;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.ip-address {
    font-size: 0.95rem;
    color: #e6edf3;
    font-family: monospace;
    font-weight: 500;
}

.copy-icon {
    color: #ffa758;
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.btn-server-ip:hover .copy-icon {
    opacity: 1;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgb(255 182 88 / 10%);
    border: 1px solid rgb(255 171 88 / 30%);
    border-radius: 2rem;
    color: #ed802f;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(138deg, #ef7b26, #ffd3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: #8b949e;
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* Section */
section {
    padding: 5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: #ffbe58;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #8b949e;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.stat-card {
    background: #161b22;
    border: 1px solid rgba(48, 54, 61, 0.5);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: #58a6ff;
    transform: translateY(-4px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #58a6ff;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #8b949e;
    font-size: 1rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(152deg, rgb(255 180 76 / 5%) 0%, #e38c3833 100%);
    border: 1px solid #ffbe5f2e;
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #ad67198a;
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e6edf3;
}

.feature-card p {
    color: #8b949e;
    line-height: 1.7;
}

/* About Section - Clean Professional Design */
.about-container {
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: #141518;
    border-radius: 0.5rem;
    padding: 1.75rem;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: #58a6ff;
    transform: translateY(-2px);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    color: #fbb443;
}

.info-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #e6edf3;
    font-weight: 600;
}

.info-card p {
    color: #8b949e;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Discord */
/* Discord Widget */
.discord-widget-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
}

.discord-widget-container iframe {
    border-radius: 0.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: #0d0e10;
    border: 1px solid rgba(255, 190, 95, 0.15);
    border-left: 4px solid #ffae58;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    background: #141518;
    box-shadow: 0 4px 12px rgba(255, 174, 88, 0.15);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

img.teampic {
    width: -webkit-fill-available;
    border-radius: 0 0 45% 45%;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-game-name {
font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #8f8f8f;
}

.team-game-name i {
    color: #d9d9d9;
    font-size: 0.9rem;
}

.team-role {
    color: #efb14f;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    background: #cfa62d12;
    border: 1px solid rgb(227 161 58 / 22%);
    border-radius: 1rem;
    padding: 0.35rem 1rem;
    display: inline-block;
}

.team-bio {
    color: #8b949e;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
/* Footer */
footer {
    background: #0a0b0d;
    border-top: 1px solid rgba(255, 174, 88, 0.1);
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(138deg, #ef7b26, #ffd3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: #8b949e;
    line-height: 1.6;
    max-width: 500px;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #8b949e;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffae58;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(48, 54, 61, 0.3);
    text-align: center;
}

.footer-bottom p {
    color: #6e7681;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}
