* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 193, 7, 0.2);
    border-top: 4px solid #ffc107;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    margin-top: 20px;
    font-size: 18px;
    color: #ffc107;
    letter-spacing: 2px;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

.main-container {
    position: relative;
    z-index: 1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(90deg, #ffc107 0%, #ffeb3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffc107;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffc107;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hero {
    text-align: center;
    padding: 100px 40px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23000000" width="1200" height="400" opacity="0.1"/></svg>');
    background-size: cover;
    position: relative;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 25px;
    margin-bottom: 30px;
    font-size: 14px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #ffc107;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h1 .highlight {
    background: linear-gradient(90deg, #ffc107 0%, #ffeb3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.play-button {
    display: inline-block;
    padding: 16px 50px;
    background: transparent;
    border: 2px solid #ffc107;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 60px;
}

.play-button:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.progress-section {
    max-width: 700px;
    margin: 0 auto;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffc107 0%, #ffeb3b 100%);
    width: 30%;
    border-radius: 10px;
    animation: progressAnimation 2s ease-in-out;
}

@keyframes progressAnimation {
    from { width: 0%; }
    to { width: 35%; }
}

.status-section {
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.status-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.status-card {
    background: rgba(15, 15, 15, 0.8);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.status-card:hover {
    transform: translateY(-10px);
    border-color: #ffc107;
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
}

.status-icon {
    font-size: 50px;
    color: #ffc107;
    margin-bottom: 20px;
}

.status-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.status-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.status-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 20px;
    overflow: hidden;
}

.status-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffc107 0%, #ffeb3b 100%);
    border-radius: 10px;
}

.status-card:nth-child(1) .status-progress-fill { width: 100%; }
.status-card:nth-child(2) .status-progress-fill { width: 60%; }
.status-card:nth-child(3) .status-progress-fill { width: 45%; }
.status-card:nth-child(4) .status-progress-fill { width: 30%; }

.features-section {
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 700;
    background: linear-gradient(90deg, #ffc107 0%, #ffeb3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(15, 15, 15, 0.8);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 20px;
    padding: 50px 40px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ffc107;
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
}

.feature-icon {
    font-size: 50px;
    color: #ffc107;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.team-section {
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background: rgba(15, 15, 15, 0.8);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: #ffc107;
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
}

.team-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: bold;
    color: #000;
    border: 3px solid #ffc107;
    position: relative;
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(255, 193, 7, 0.6);
}

.crown-icon {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 30px;
    color: #ffc107;
}

.team-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.team-role {
    color: #ffc107;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #ffc107;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-btn:hover {
    background: #ffc107;
    color: #000;
    transform: translateY(-3px);
}

footer {
    background: rgba(10, 10, 10, 0.9);
    border-top: 2px solid rgba(255, 193, 7, 0.3);
    padding: 60px 60px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #ffc107;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    border: 3px solid rgba(255, 193, 7, 0.4);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
}

.footer-link:hover {
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.footer-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.design-credit {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.design-credit a {
    color: #ffc107;
    text-decoration: none;
}

@media (max-width: 768px) {
    header {
        padding: 20px 30px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-box {
        padding: 50px 40px;
    }

    .status-section, .features-section, .team-section, footer {
        padding: 40px 30px;
    }

    .features-grid, .team-grid {
        grid-template-columns: 1fr;
    }
}