* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    line-height: 1.5;
    min-height: 100vh;
    background: radial-gradient(ellipse at 30% 40%, #0a0c1a, #010101);
    position: relative;
    overflow-x: hidden;
}

/* STARS BACKGROUND */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffffff;
    width: 2px;
    height: 2px;
    animation: starFall 8s linear infinite;
}

@keyframes starFall {
    0% { transform: translateY(-10vh) translateX(0); opacity: 1; }
    100% { transform: translateY(110vh) translateX(100px); opacity: 0; }
}

.shooting-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.overlay-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(40, 60, 120, 0.2), rgba(2, 5, 15, 0.9));
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(20, 30, 60, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #fff, #bb86fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo i {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
    -webkit-text-fill-color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #bb86fc;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-switcher {
    display: flex;
    gap: 5px;
    margin-left: 10px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: #bb86fc;
    border-color: #bb86fc;
}

.lang-btn:hover {
    background: rgba(187, 134, 252, 0.3);
}

/* TRUST BANNER */
.trust-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 30, 60, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
    transition: all 0.3s ease;
}

.trust-banner i {
    color: #ffd966;
    margin-right: 6px;
}

.highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 20px;
    border-radius: 30px;
}

/* HERO SECTION */
.hero-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title span {
    background: linear-gradient(135deg, #bb86fc, #ffd966);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-btn {
    background: linear-gradient(135deg, #bb86fc, #9b6ad0);
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(187, 134, 252, 0.3);
    animation: bounceIn 0.8s ease;
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(187, 134, 252, 0.4);
}

.hero-btn i {
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateY(3px);
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease 0.3s both;
}

.stat-item {
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffd966;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* PRODUCTS SECTION */
.products-section {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.section-title {
    font-size: 2rem;
    background: linear-gradient(135deg, #fff, #bb86fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* PRODUCT LIST */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.product-card-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(20, 30, 60, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInLeft 0.5s ease;
    animation-fill-mode: both;
}

.product-card-list:nth-child(1) { animation-delay: 0.1s; }
.product-card-list:nth-child(2) { animation-delay: 0.2s; }
.product-card-list:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-card-list:hover {
    background: rgba(40, 60, 100, 0.4);
    transform: translateX(5px) scale(1.02);
    border-color: #bb86fc;
    box-shadow: 0 10px 30px rgba(187, 134, 252, 0.2);
}

.card-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-icon-small {
    width: 50px;
    height: 50px;
    background: rgba(187, 134, 252, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #bb86fc;
    transition: all 0.3s ease;
}

.product-card-list:hover .product-icon-small {
    transform: rotate(5deg) scale(1.1);
    background: rgba(187, 134, 252, 0.3);
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: white;
    transition: all 0.3s ease;
}

.product-card-list:hover .product-info h3 {
    color: #bb86fc;
}

.product-platform {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.card-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd966;
    transition: all 0.3s ease;
}

.product-card-list:hover .product-price {
    transform: scale(1.1);
}

.detail-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 8px 16px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.detail-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.detail-btn i {
    transition: transform 0.3s ease;
}

.detail-btn:hover i {
    transform: translateX(5px);
}

/* DETAIL PAGE */
.detail-page {
    display: none;
    background: rgba(20, 30, 60, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 30px;
    margin: 20px 0;
    animation: fadeInScale 0.4s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.back-link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.back-link i {
    transition: transform 0.3s ease;
}

.back-link:hover i {
    transform: translateX(-3px);
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 0.5s ease;
}

.detail-icon {
    width: 70px;
    height: 70px;
    background: rgba(187, 134, 252, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #bb86fc;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(187, 134, 252, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(187, 134, 252, 0); }
    100% { box-shadow: 0 0 0 0 rgba(187, 134, 252, 0); }
}

.detail-title {
    font-size: 2rem;
    background: linear-gradient(135deg, #fff, #bb86fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.detail-platform {
    color: rgba(255, 255, 255, 0.6);
}

/* FEATURES SECTION */
.features-section {
    margin: 30px 0;
    animation: fadeInUp 0.5s ease 0.1s both;
}

.features-title {
    color: #ffd966;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ffd966;
    animation: expandWidth 0.5s ease;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 50px; }
}

.features-list-modern {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.features-list-modern li {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.features-list-modern li:hover {
    background: rgba(187, 134, 252, 0.1);
    transform: translateX(5px);
    border-color: rgba(187, 134, 252, 0.3);
}

.features-list-modern i {
    color: #4caf50;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.features-list-modern strong {
    color: #bb86fc;
    margin-right: 5px;
}

/* PRICE OPTIONS */
.price-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin: 30px 0;
    animation: fadeInUp 0.5s ease 0.2s both;
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-card:hover {
    background: rgba(187, 134, 252, 0.1);
    transform: translateY(-3px);
    border-color: #bb86fc;
}

.price-card.selected {
    background: rgba(187, 134, 252, 0.2);
    border-color: #bb86fc;
    box-shadow: 0 0 15px rgba(187, 134, 252, 0.3);
}

.price-card .days {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.price-card .price-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd966;
}

/* ORDER BOX */
.order-box {
    margin-top: 30px;
    animation: fadeInUp 0.5s ease 0.3s both;
}

.order-btn {
    width: 100%;
    background: linear-gradient(135deg, #4caf50, #45a049);
    border: none;
    color: white;
    padding: 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.order-btn:hover::before {
    left: 100%;
}

.order-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

/* TAB CONTENT */
.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    animation: slideUpFade 0.5s ease;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PAGE HEADER */
.page-header {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.5s ease;
}

.page-header h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #fff, #bb86fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.6);
}

/* FEATURES GRID MODERN */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card-modern {
    background: rgba(20, 30, 60, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInScale 0.5s ease;
    animation-fill-mode: both;
}

.feature-card-modern:nth-child(1) { animation-delay: 0.1s; }
.feature-card-modern:nth-child(2) { animation-delay: 0.2s; }
.feature-card-modern:nth-child(3) { animation-delay: 0.3s; }
.feature-card-modern:nth-child(4) { animation-delay: 0.4s; }

.feature-card-modern:hover {
    transform: translateY(-10px);
    background: rgba(40, 60, 100, 0.4);
    border-color: #bb86fc;
    box-shadow: 0 20px 40px rgba(187, 134, 252, 0.2);
}

.feature-card-modern i {
    font-size: 2.5rem;
    color: #bb86fc;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-card-modern:hover i {
    transform: scale(1.2) rotate(5deg);
}

.feature-card-modern h3 {
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.feature-card-modern:hover h3 {
    color: #bb86fc;
}

.feature-card-modern p {
    color: rgba(255, 255, 255, 0.7);
}

/* PRICING LIST */
.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px 0;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 30, 60, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: slideInRight 0.5s ease;
    animation-fill-mode: both;
}

.pricing-item:nth-child(1) { animation-delay: 0.1s; }
.pricing-item:nth-child(2) { animation-delay: 0.15s; }
.pricing-item:nth-child(3) { animation-delay: 0.2s; }
.pricing-item:nth-child(4) { animation-delay: 0.25s; }
.pricing-item:nth-child(5) { animation-delay: 0.3s; }
.pricing-item:nth-child(6) { animation-delay: 0.35s; }

.pricing-item:hover {
    background: rgba(40, 60, 100, 0.4);
    transform: translateX(10px) scale(1.02);
    border-color: #bb86fc;
}

.pricing-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.pricing-item:hover h3 {
    color: #bb86fc;
}

.pricing-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd966;
    background: rgba(255, 217, 102, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 217, 102, 0.3);
    transition: all 0.3s ease;
}

.pricing-item:hover .price-tag {
    transform: scale(1.1);
    background: rgba(255, 217, 102, 0.2);
}

/* INFO CARDS MODERN */
.info-card-modern,
.terms-card-modern,
.privacy-card-modern,
.contact-card-modern {
    background: rgba(20, 30, 60, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    margin: 30px 0;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInScale 0.5s ease;
}

.info-card-modern:hover,
.terms-card-modern:hover,
.privacy-card-modern:hover,
.contact-card-modern:hover {
    transform: translateY(-5px);
    border-color: #bb86fc;
    box-shadow: 0 20px 40px rgba(187, 134, 252, 0.2);
}

.info-card-modern i,
.contact-card-modern i {
    font-size: 3rem;
    color: #bb86fc;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.info-card-modern h3,
.contact-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.info-card-modern p,
.contact-card-modern p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.contact-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 12px 30px;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* PAYMENT SECTION (untuk metode pembayaran di semua halaman) */
.payment-section {
    background: rgba(20, 30, 60, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.payment-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #bb86fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.payment-methods {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.payment-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-item:hover {
    background: rgba(187, 134, 252, 0.2);
    transform: translateY(-2px);
    border-color: #bb86fc;
}

/* STATUS BAR */
.status-bar {
    display: flex;
    gap: 20px;
    justify-content: center;
    background: rgba(20, 30, 60, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 15px 30px;
    margin: 30px 0;
    flex-wrap: wrap;
    animation: fadeInUp 0.5s ease;
}

.status-bar span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.status-bar span:hover {
    transform: scale(1.05);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

.dot.ready { background: #2ecc71; box-shadow: 0 0 10px #2ecc71; }
.dot.maintenance { background: #f39c12; box-shadow: 0 0 10px #f39c12; }
.dot.offline { background: #7f8c8d; box-shadow: 0 0 10px #7f8c8d; }

/* FOOTER */
.footer {
    text-align: center;
    padding: 30px;
    color: rgba(255, 255, 255, 0.5);
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(145deg, #1a1f35, #0f1222);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #fff, #bb86fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 25px;
}

.modal-body h3 {
    font-size: 1rem;
    color: #ffd966;
    margin: 15px 0 8px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.payment-option {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover,
.payment-option.selected {
    background: rgba(255, 217, 102, 0.2);
    border-color: #ffd966;
    transform: scale(1.02);
}

.modal-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.modal-input:focus {
    outline: none;
    border-color: #bb86fc;
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

.modal-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    margin: 20px 0;
}

.total-amount {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffd966;
}

.modal-footer {
    display: flex;
    gap: 10px;
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn.cancel {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-btn.confirm {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
}

.modal-btn:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* ===== PAYMENT TAB STYLES ===== */
.payment-container {
    max-width: 600px;
    margin: 40px auto;
    background: rgba(20, 30, 60, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 40px;
}

.payment-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.payment-back-btn {
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.payment-back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.payment-header h1 {
    font-size: 2rem;
    background: linear-gradient(135deg, #fff, #bb86fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.payment-header p {
    color: rgba(255, 255, 255, 0.6);
}

.order-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
}

.order-summary h2 {
    color: #ffd966;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span:first-child {
    color: rgba(255, 255, 255, 0.6);
}

.summary-item span:last-child {
    color: white;
    font-weight: 600;
}

.payment-id-container {
    background: rgba(187, 134, 252, 0.1);
    border: 1px solid #bb86fc;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-id-container span {
    color: rgba(255, 255, 255, 0.6);
}

.payment-id-container strong {
    font-size: 1.2rem;
    color: #bb86fc;
    flex: 1;
    font-family: monospace;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: rgba(187, 134, 252, 0.2);
    border-color: #bb86fc;
}

.bank-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
}

.bank-details h3 {
    color: #ffd966;
    margin-bottom: 15px;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bank-row:last-child {
    border-bottom: none;
}

.bank-row span {
    color: rgba(255, 255, 255, 0.6);
}

.bank-row strong {
    color: white;
}

.upload-area {
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.upload-area:hover {
    border-color: #bb86fc;
    background: rgba(187, 134, 252, 0.05);
}

.upload-area i {
    font-size: 3rem;
    color: #bb86fc;
    margin-bottom: 15px;
}

.upload-area p {
    color: white;
    margin-bottom: 5px;
}

.file-hint {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.file-name {
    text-align: center;
    color: #bb86fc;
    margin: 10px 0 20px;
    font-weight: 500;
}

.payment-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #4caf50, #45a049);
    border: none;
    color: white;
    padding: 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    margin: 20px 0;
}

.payment-submit-btn:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.payment-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-status {
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    display: none;
}

.payment-status.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    display: block;
}

.payment-status.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 20px;
        right: 20px;
        background: rgba(10, 15, 30, 0.95);
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        z-index: 100;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .lang-switcher {
        margin: 10px 0;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .card-left {
        gap: 10px;
    }
    
    .product-icon-small {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .product-info h3 {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .detail-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .features-list-modern {
        grid-template-columns: 1fr;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .features-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .payment-container {
        padding: 25px;
    }
    
    .payment-back-btn {
        position: relative;
        margin-bottom: 20px;
        display: inline-flex;
    }
    
    .payment-header {
        text-align: center;
    }
    
    .payment-header h1 {
        font-size: 1.5rem;
    }
    
    .payment-id-container {
        flex-wrap: wrap;
    }
    
    .payment-id-container strong {
        font-size: 1rem;
    }
}