* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
.gradient-text {
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.glow-text {
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5), 0 0 40px rgba(6, 182, 212, 0.3);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    font-size: 1.3rem;
    color: white;
}

.logo-text {
    font-family: 'Orbitron', monospace;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    transition: width 0.3s ease;
}

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

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

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

/* Hero Banner Video Section */
.hero-banner {
    margin-top: 72px;
    position: relative;
}

.video-banner-container {
    position: relative;
    width: 100%;
    min-height: 40vh;
    max-height: 400px;
    background: #000000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background blur untuk mengisi ruang kosong */
.video-background-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f, #1a1a2e);
    z-index: 0;
}

/* Video dengan object-fit contain */
.banner-video {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

/* Overlay gradient untuk teks */
.video-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(10,10,15,0.8));
    z-index: 2;
}

/* Konten di atas video */
.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.banner-container {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(168, 85, 247, 0.4);
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: 'Orbitron', monospace;
}

.hero-subtitle {
    font-size: 1rem;
    color: #c0c0d0;
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.btn-glow {
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
    animation: btnGlow 2s infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(168, 85, 247, 0.5); }
    50% { box-shadow: 0 0 25px rgba(168, 85, 247, 0.7); }
}

.btn-outline {
    background: transparent;
    border: 2px solid #a855f7;
    color: white;
}

.btn-outline:hover {
    background: rgba(168, 85, 247, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(168, 85, 247, 0.5);
}

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 14px 36px;
    font-size: 1rem;
}

/* Features Section */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    font-family: 'Orbitron', monospace;
}

.section-header p {
    color: #b0b0c0;
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #a855f7;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(6,182,212,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #a855f7;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: #b0b0c0;
    font-size: 0.85rem;
}

/* Tournament Section */
.tournament-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 30px;
}

.tournament-card {
    background: linear-gradient(135deg, rgba(168,85,247,0.1), rgba(6,182,212,0.1));
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 32px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
}

.tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.2);
}

.tournament-header {
    text-align: center;
    margin-bottom: 24px;
}

.tournament-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.tournament-icon i {
    font-size: 2rem;
    color: white;
}

.tournament-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.tournament-badge {
    display: inline-block;
    background: rgba(168, 85, 247, 0.3);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tournament-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.detail-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 14px;
    border-radius: 14px;
    text-align: center;
}

.detail-item i {
    font-size: 1.2rem;
    color: #a855f7;
    display: block;
    margin-bottom: 6px;
}

.detail-item span {
    display: block;
    font-size: 0.75rem;
    color: #b0b0c0;
    margin-bottom: 4px;
}

.detail-item strong {
    font-size: 1.1rem;
    color: #06b6d4;
}

.prize-pool {
    margin-bottom: 24px;
}

.prize-pool h4 {
    text-align: center;
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.prize-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prize-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.prize-item i {
    font-size: 1.1rem;
}

.prize-item span {
    flex: 1;
    font-size: 0.9rem;
}

.prize-item strong {
    font-size: 1rem;
}

.gold i { color: #ffd700; }
.silver i { color: #c0c0c0; }
.bronze i { color: #cd7f32; }

.countdown-section {
    text-align: center;
    margin: 24px 0;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
}

.countdown-section p {
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.time-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 14px;
    border-radius: 10px;
    text-align: center;
    min-width: 60px;
}

.time-card span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #a855f7;
    display: block;
    font-family: 'Orbitron', monospace;
}

.time-card label {
    font-size: 0.65rem;
    color: #b0b0c0;
}

/* Info Text untuk fee rahasia */
.info-text {
    text-align: center;
    margin: 16px 0;
    padding: 12px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 12px;
    border: 1px dashed rgba(168, 85, 247, 0.4);
}

.info-text i {
    font-size: 1rem;
    color: #a855f7;
    margin-right: 8px;
}

.info-text p {
    display: inline;
    font-size: 0.8rem;
    color: #b0b0c0;
}

.tournament-info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 28px;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
}

.info-item i {
    font-size: 1.3rem;
    color: #a855f7;
}

.info-item h4 {
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.info-item p {
    font-size: 0.8rem;
    color: #b0b0c0;
}

/* Payment Section */
./* Payment Section */
.payment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.payment-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    border-color: #a855f7;
}

.card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(6,182,212,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.card-icon i {
    font-size: 1.6rem;
    color: #a855f7;
}

.payment-card h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* QRIS Container - Diperbesar 2-3x */
.qris-placeholder {
    background: white;
    padding: 24px;
    border-radius: 20px;
    margin: 16px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.qris-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.demo-text {
    color: #666;
    font-size: 0.8rem;
    margin-top: 8px;
}

.dana-number-wrapper {
    margin: 16px 0;
}

.dana-label {
    display: block;
    font-size: 0.8rem;
    color: #b0b0c0;
    margin-bottom: 8px;
}

.dana-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.copy-btn {
    background: #a855f7;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.copy-btn:hover {
    background: #06b6d4;
    transform: scale(1.05);
}

.payment-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 165, 0, 0.1);
    padding: 10px;
    border-radius: 10px;
    margin: 16px 0;
    color: #ffa500;
    font-size: 0.8rem;
}

/* Responsive - Ukuran lebih besar di semua device */
@media (max-width: 768px) {
    .qris-placeholder {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .qris-placeholder {
        max-width: 280px;
        padding: 16px;
    }
}

/* QRIS Container dengan rasio 1:1 */
.qris-placeholder {
    background: white;
    padding: 20px;
    border-radius: 16px;
    margin: 16px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
}

.qris-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.demo-text {
    color: #666;
    font-size: 0.7rem;
    margin-top: 8px;
}

.dana-number-wrapper {
    margin: 16px 0;
}

.dana-label {
    display: block;
    font-size: 0.8rem;
    color: #b0b0c0;
    margin-bottom: 8px;
}

.dana-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.copy-btn {
    background: #a855f7;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.copy-btn:hover {
    background: #06b6d4;
    transform: scale(1.05);
}

.payment-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 165, 0, 0.1);
    padding: 10px;
    border-radius: 10px;
    margin: 16px 0;
    color: #ffa500;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .qris-placeholder {
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .qris-placeholder {
        max-width: 180px;
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #a855f7;
}

.testimonial-avatar i {
    font-size: 3rem;
    color: #a855f7;
    margin-bottom: 10px;
}

.rating {
    color: #ffd700;
    margin-bottom: 14px;
    font-size: 0.8rem;
}

.testimonial-card p {
    margin: 14px 0;
    font-style: italic;
    color: #d0d0e0;
    font-size: 0.9rem;
}

.testimonial-card h4 {
    margin-bottom: 6px;
    color: #a855f7;
    font-size: 0.95rem;
}

.winner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
}

/* CTA Section */
.cta {
    margin: 30px 0;
}

.cta-wrapper {
    background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(6,182,212,0.15));
    backdrop-filter: blur(10px);
    border-radius: 32px;
    text-align: center;
    padding: 48px;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.cta-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 14px;
    font-family: 'Orbitron', monospace;
}

.cta-wrapper p {
    color: #b0b0c0;
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 48px 0 20px;
    margin-top: 48px;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand .logo {
    margin-bottom: 14px;
}

.footer-brand p {
    color: #b0b0c0;
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.social-links a:hover {
    background: #a855f7;
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0c0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: #a855f7;
}

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0c0;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 968px) {
    .tournament-wrapper, .payment-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
        margin-bottom: 16px;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
    
    .cta-wrapper {
        padding: 32px 20px;
    }
    
    .cta-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .time-card {
        min-width: 55px;
        padding: 8px 10px;
    }
    
    .time-card span {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .video-banner-container {
        min-height: 35vh;
        max-height: 350px;
    }
    
    .qris-image {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        justify-content: center;
        width: 100%;
    }
    
    .features-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .tournament-details {
        grid-template-columns: 1fr;
    }
    
    .video-banner-container {
        min-height: 45vh;
        max-height: 300px;
    }
    
    .qris-image {
        width: 150px;
        height: 150px;
    }
}