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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid #8b5cf6;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    color: #8b5cf6;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo i {
    margin-right: 10px;
    color: #a78bfa;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: #8b5cf6;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8b5cf6;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #8b5cf6;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(139, 92, 246, 0.3)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%238b5cf6" stroke-width="1" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated Background Particles */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(167, 139, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(139, 92, 246, 0.03) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(167, 139, 250, 0.03) 50%, transparent 60%);
    background-size: 100px 100px, 80px 80px;
    animation: backgroundMove 20s linear infinite;
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #8b5cf6;
    border-radius: 50%;
    animation: float 15s infinite linear;
    opacity: 0.6;
    box-shadow: 0 0 10px #8b5cf6;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 15s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 18s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 14s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; animation-duration: 16s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; animation-duration: 13s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; animation-duration: 17s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; animation-duration: 19s; }
.particle:nth-child(9) { left: 90%; animation-delay: 16s; animation-duration: 11s; }

/* Glitch Effect */
.glitch-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 98%, rgba(139, 92, 246, 0.1) 100%);
    animation: glitch 3s infinite;
    pointer-events: none;
    z-index: 2;
}

/* Matrix Rain Effect */
.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.matrix-column {
    position: absolute;
    top: -100%;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #8b5cf6, transparent);
    animation: matrixFall 8s infinite linear;
    opacity: 0.3;
}

.matrix-column:nth-child(1) { left: 5%; animation-delay: 0s; }
.matrix-column:nth-child(2) { left: 15%; animation-delay: 1s; }
.matrix-column:nth-child(3) { left: 25%; animation-delay: 2s; }
.matrix-column:nth-child(4) { left: 35%; animation-delay: 3s; }
.matrix-column:nth-child(5) { left: 45%; animation-delay: 4s; }
.matrix-column:nth-child(6) { left: 55%; animation-delay: 5s; }
.matrix-column:nth-child(7) { left: 65%; animation-delay: 6s; }
.matrix-column:nth-child(8) { left: 75%; animation-delay: 7s; }
.matrix-column:nth-child(9) { left: 85%; animation-delay: 8s; }
.matrix-column:nth-child(10) { left: 95%; animation-delay: 9s; }

.hero-content {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out, glow 3s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e5e5e5;
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    z-index: 10;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    animation: fadeInUp 1s ease-out 0.6s both, pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 20;
    cursor: pointer;
    pointer-events: auto;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
    background: linear-gradient(45deg, #a78bfa, #8b5cf6);
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-buttons .cta-button {
    min-width: 180px;
    text-align: center;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8b5cf6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

/* Security Notice */
.security-notice {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
}

.security-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.security-header i {
    font-size: 2rem;
    color: #8b5cf6;
    animation: pulse 2s infinite;
}

.security-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.security-main {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.security-main strong {
    color: #8b5cf6;
    font-weight: 700;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.security-item:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.security-item i {
    font-size: 1.5rem;
    color: #8b5cf6;
    min-width: 24px;
}

.security-item span {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.security-verified {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    margin-top: 20px;
}

.security-verified i {
    font-size: 1.2rem;
    color: #22c55e;
    animation: pulse 2s infinite;
}

.security-verified span {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 1rem;
}

.security-verification {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.security-verification i {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 15px;
    display: block;
}

.security-verification p {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.features .section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(145deg, #1f2937, #374151);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #8b5cf6;
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
}

.feature-card:hover .feature-header i {
    transform: scale(1.1) rotate(5deg);
    color: #a78bfa;
}

.feature-card:hover .feature-video {
    transform: scale(1.05);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.feature-header i {
    font-size: 2.5rem;
    color: #8b5cf6;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    transition: all 0.3s ease;
}

.feature-header h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.feature-video {
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-video iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 15px;
}

.feature-list h4 {
    color: #8b5cf6;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #e5e7eb;
    font-size: 1rem;
}

.feature-list li i {
    color: #10b981;
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Responsive Features */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .feature-video iframe {
        height: 180px;
    }
    
    .security-notice {
        padding: 20px;
        margin: 30px 0;
    }
    
    .security-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .security-header h3 {
        font-size: 1.3rem;
    }
    
    .security-main {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features .section-title {
        font-size: 2rem;
    }
    
    .feature-header h3 {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-video iframe {
        height: 160px;
    }
    
    .security-notice {
        padding: 15px;
        margin: 20px 0;
    }
    
    .security-header h3 {
        font-size: 1.2rem;
    }
    
    .security-main {
        font-size: 0.95rem;
    }
    
    .security-item {
        padding: 12px;
        gap: 12px;
    }
    
    .security-item i {
        font-size: 1.3rem;
    }
    
    .security-item span {
        font-size: 0.9rem;
    }
}

/* Products Section */
.products {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
}

.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.product-options {
    margin-bottom: 2rem;
}

.option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    margin: 0.5rem 0;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    border-left: 3px solid #8b5cf6;
    transition: all 0.3s ease;
}

.option:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateX(5px);
}

.option span:first-child {
    font-weight: 500;
    color: #e5e5e5;
}

.price {
    color: #8b5cf6;
    font-weight: bold;
    font-size: 1.1rem;
}

.buy-button {
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.buy-button:hover {
    background: linear-gradient(45deg, #a78bfa, #8b5cf6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* Payment Section */
.payment {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

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

.payment-card {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
}

.payment-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
}

.payment-card i {
    font-size: 3rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.payment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.payment-card p {
    color: #b3b3b3;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

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

.contact-item {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
}

.contact-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #8b5cf6;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
}

.contact-item:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #a78bfa;
}

.contact-item:hover h3 {
    color: #a78bfa;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

.contact-item:hover p {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.contact-item[onclick]:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #8b5cf6;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
}

.contact-item i {
    font-size: 2.5rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-item p {
    color: #b3b3b3;
}

/* Footer */
.footer {
    background: #000000;
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid #8b5cf6;
}

.footer p {
    color: #b3b3b3;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    margin: 1% auto;
    padding: 1.5rem;
    border-radius: 15px;
    width: 95%;
    max-width: 600px;
    max-height: 95vh;
    border: 2px solid #8b5cf6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(42, 42, 42, 0.5);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #a78bfa, #8b5cf6);
}

.close {
    color: #8b5cf6;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #a78bfa;
}

.modal-content h2 {
    color: #8b5cf6;
    margin-bottom: 2rem;
    text-align: center;
}

.modal-payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.modal-payment-card {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-payment-card:hover {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-3px);
}

.modal-payment-card i {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.modal-payment-card h3 {
    color: #ffffff;
    font-size: 0.9rem;
}

.order-info {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #8b5cf6;
}

.order-info h3 {
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.order-info p {
    color: #e5e5e5;
    margin: 0.5rem 0;
}

/* Payment Form Styles */
.payment-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: #8b5cf6;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    background: rgba(42, 42, 42, 0.8);
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
    background: rgba(42, 42, 42, 0.9);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b3b3b3;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    background: rgba(139, 92, 246, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-option:hover {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option input[type="radio"]:checked + i + span {
    color: #8b5cf6;
}

.payment-option input[type="radio"]:checked ~ * {
    color: #8b5cf6;
}

.payment-option:has(input[type="radio"]:checked) {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.2);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.payment-option i {
    font-size: 1.5rem;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.payment-option span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Payment Details Styles */
.payment-details {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid #8b5cf6;
    border-radius: 10px;
    animation: slideDown 0.3s ease-out;
}

/* Payment Instructions Styles */
.payment-instructions {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
}

.payment-instructions h4 {
    color: #8b5cf6;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.instruction-content {
    color: #e2e8f0;
}

.instruction-item p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.instruction-item p:first-child {
    color: #8b5cf6;
    font-weight: bold;
    margin-bottom: 0.8rem;
}

.payment-detail-content h4 {
    color: #8b5cf6;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.payment-detail-content .qr-code {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

.payment-detail-content .qr-code img {
    max-width: 200px;
    max-height: 200px;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
    object-fit: contain;
    background: white;
    padding: 10px;
}

.payment-detail-content .qr-code div {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.payment-detail-content .qr-code div:hover {
    transform: scale(1.02);
}

.payment-detail-content .account-info {
    background: rgba(42, 42, 42, 0.8);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #8b5cf6;
}

.payment-detail-content .account-info p {
    color: #ffffff;
    margin: 0.5rem 0;
    font-size: 1rem;
}

.payment-detail-content .account-info .account-number {
    color: #8b5cf6;
    font-weight: bold;
    font-size: 1.1rem;
    background: rgba(139, 92, 246, 0.1);
    padding: 0.5rem;
    border-radius: 5px;
    margin: 0.5rem 0;
    text-align: center;
}

.payment-detail-content .copy-btn {
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.payment-detail-content .copy-btn:hover {
    background: linear-gradient(45deg, #a78bfa, #8b5cf6);
    transform: translateY(-2px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.modal-footer {
    position: sticky;
    bottom: 0;
    background: #2a2a2a; /* biar nyatu sama modal */
    padding: 1rem;
    text-align: center;
    border-top: 2px solid #8b5cf6;
    z-index: 10;
}

.cancel-btn,
.submit-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.cancel-btn {
    background: rgba(108, 117, 125, 0.8);
    color: #ffffff;
    border: 2px solid rgba(108, 117, 125, 0.5);
}

.cancel-btn:hover {
    background: rgba(108, 117, 125, 1);
    border-color: rgba(108, 117, 125, 1);
    transform: translateY(-2px);
}

.submit-btn {
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
    color: white;
    border: 2px solid transparent;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #a78bfa, #8b5cf6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* File Upload Styles */
.file-upload-container {
    position: relative;
    margin-top: 0.5rem;
}

.file-upload-container input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: 2px dashed rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    background: rgba(139, 92, 246, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 100px;
}

.file-upload-label:hover {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.file-upload-label i {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.file-upload-text {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.file-upload-hint {
    color: #b3b3b3;
    font-size: 0.85rem;
}

.file-preview {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid #8b5cf6;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.file-preview i {
    font-size: 1.5rem;
    color: #8b5cf6;
    margin-right: 0.75rem;
}

.file-name {
    color: #ffffff;
    flex: 1;
    font-weight: 500;
}

.remove-file {
    background: #8b5cf6;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-file:hover {
    background: #a78bfa;
    transform: scale(1.1);
}

/* Loading Modal Styles */
.loading-content {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    margin: 20% auto;
    padding: 3rem 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    border: 2px solid #8b5cf6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    text-align: center;
    position: relative;
}

.loading-spinner {
    margin-bottom: 2rem;
}

.loading-spinner i {
    font-size: 3rem;
    color: #8b5cf6;
    animation: spin 1s linear infinite;
}

.loading-content h2 {
    color: #8b5cf6;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.loading-content p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: #8b5cf6;
    border-radius: 50%;
    animation: loadingDots 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0s;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loadingDots {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Text Animations */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 50% {
        border-color: transparent;
    }
    51%, 100% {
        border-color: #8b5cf6;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px #8b5cf6, 0 0 10px #8b5cf6, 0 0 15px #8b5cf6;
    }
    50% {
        text-shadow: 0 0 10px #8b5cf6, 0 0 20px #8b5cf6, 0 0 30px #8b5cf6, 0 0 40px #8b5cf6;
    }
}

@keyframes rainbow {
    0% { color: #8b5cf6; }
    16% { color: #a78bfa; }
    32% { color: #c084fc; }
    48% { color: #d946ef; }
    64% { color: #ec4899; }
    80% { color: #f472b6; }
    100% { color: #8b5cf6; }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

@keyframes pulseText {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Text Animation Classes */
.typing-text {
    overflow: hidden;
    border-right: 2px solid #8b5cf6;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink 0.75s step-end infinite;
}

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

.bounce-in {
    animation: bounceIn 1s ease-out;
}

.text-glow {
    animation: textGlow 2s ease-in-out infinite;
}

.rainbow-text {
    animation: rainbow 3s linear infinite;
}

.wave-text {
    animation: wave 2s ease-in-out infinite;
}

.shake-text {
    animation: shake 0.5s ease-in-out;
}

.pulse-text {
    animation: pulseText 2s ease-in-out infinite;
}

/* Interactive Text Effects */
.interactive-text {
    cursor: pointer;
    transition: all 0.3s ease;
}

.interactive-text:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
    color: #a78bfa;
}

/* Floating Text Animation */
.floating-text {
    animation: wave 3s ease-in-out infinite;
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
    animation: glitch 2s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch 2s infinite;
    color: #ff0000;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch 2s infinite reverse;
    color: #00ff00;
    z-index: -2;
}

/* Neon Text Effect */
.neon-text {
    text-shadow: 
        0 0 5px #8b5cf6,
        0 0 10px #8b5cf6,
        0 0 15px #8b5cf6,
        0 0 20px #8b5cf6,
        0 0 35px #8b5cf6,
        0 0 40px #8b5cf6;
    animation: neonFlicker 1.5s infinite alternate;
    transition: all 0.3s ease;
}

.neon-text:hover {
    text-shadow: 
        0 0 10px #8b5cf6,
        0 0 20px #8b5cf6,
        0 0 30px #8b5cf6,
        0 0 40px #8b5cf6,
        0 0 50px #8b5cf6,
        0 0 60px #8b5cf6;
    transform: scale(1.05);
}

@keyframes neonFlicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 
            0 0 5px #8b5cf6,
            0 0 10px #8b5cf6,
            0 0 15px #8b5cf6,
            0 0 20px #8b5cf6,
            0 0 35px #8b5cf6,
            0 0 40px #8b5cf6;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* Enhanced Text Animations */
.magic-text {
    background: linear-gradient(45deg, #8b5cf6, #a78bfa, #c084fc, #d946ef);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* Floating Animation for Icons */
.floating-icon {
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Sparkle Effect */
.sparkle-text {
    position: relative;
    overflow: hidden;
}

.sparkle-text::before {
    content: '✨';
    position: absolute;
    top: -10px;
    left: -10px;
    animation: sparkle 2s infinite;
    opacity: 0;
}

.sparkle-text::after {
    content: '⭐';
    position: absolute;
    top: -10px;
    right: -10px;
    animation: sparkle 2s infinite 1s;
    opacity: 0;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Staggered Animation Delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

.animate-delay-7 { animation-delay: 0.7s; }

.animate-delay-8 { animation-delay: 0.8s; }

.animate-delay-9 { animation-delay: 0.9s; }

.animate-delay-10 { animation-delay: 1.0s; }

/* Feature List Item Animations */
.feature-list li {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease-out forwards;
    transition: all 0.3s ease;
}

.feature-list li:nth-child(1) { animation-delay: 0.1s; }
.feature-list li:nth-child(2) { animation-delay: 0.2s; }
.feature-list li:nth-child(3) { animation-delay: 0.3s; }
.feature-list li:nth-child(4) { animation-delay: 0.4s; }
.feature-list li:nth-child(5) { animation-delay: 0.5s; }
.feature-list li:nth-child(6) { animation-delay: 0.6s; }
.feature-list li:nth-child(7) { animation-delay: 0.7s; }
.feature-list li:nth-child(8) { animation-delay: 0.8s; }
.feature-list li:nth-child(9) { animation-delay: 0.9s; }
.feature-list li:nth-child(10) { animation-delay: 1.0s; }

.feature-list li:hover {
    transform: translateX(10px);
    color: #8b5cf6;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.feature-list li:hover i {
    color: #a78bfa;
    transform: scale(1.2);
}

/* Security Item Animations */
.security-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    transition: all 0.3s ease;
}

.security-item:nth-child(1) { animation-delay: 0.2s; }
.security-item:nth-child(2) { animation-delay: 0.4s; }
.security-item:nth-child(3) { animation-delay: 0.6s; }

.security-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.security-item:hover i {
    color: #a78bfa;
    transform: scale(1.2) rotate(10deg);
}

.security-item:hover span {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes backgroundMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(-20px) translateY(-10px);
    }
    50% {
        transform: translateX(20px) translateY(10px);
    }
    75% {
        transform: translateX(-10px) translateY(20px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes glitch {
    0%, 100% {
        transform: translateX(0);
        opacity: 0;
    }
    20% {
        transform: translateX(-2px);
        opacity: 0.1;
    }
    40% {
        transform: translateX(2px);
        opacity: 0.1;
    }
    60% {
        transform: translateX(-1px);
        opacity: 0.05;
    }
    80% {
        transform: translateX(1px);
        opacity: 0.05;
    }
}

@keyframes matrixFall {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px #8b5cf6, 0 0 10px #8b5cf6, 0 0 15px #8b5cf6;
    }
    50% {
        text-shadow: 0 0 10px #8b5cf6, 0 0 20px #8b5cf6, 0 0 30px #8b5cf6;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-buttons .cta-button {
        min-width: 150px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .product-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .product-options {
        margin-bottom: 15px;
    }
    
    .option {
        padding: 10px;
        margin: 5px 0;
        font-size: 13px;
    }
    
    .option span:first-child {
        font-size: 13px;
    }
    
    .price {
        font-size: 1.2rem;
        margin: 15px 0;
    }
    
    .buy-button {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        padding: 20px;
        text-align: center;
    }
    
    .contact-item h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .modal-content {
        margin: 1% auto;
        width: 98%;
        padding: 1rem;
        max-height: 98vh;
        overflow-y: auto;
    }
    
    .payment-form {
        gap: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .payment-instructions {
        padding: 15px;
    }
    
    .instruction-item {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .instruction-item p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .instruction-item h5 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .modal-payment-methods {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .modal-payment-method {
        padding: 12px;
    }
    
    .modal-payment-method label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Navigation - Keep hamburger menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        max-width: 250px;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    /* Features Grid - Single Column */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        min-height: 300px;
    }
    
    .feature-video iframe {
        height: 180px;
    }
    
    /* Security Features - Single Column */
    .security-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Contact Info - Single Column */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card {
        padding: 15px;
    }
    
    .product-image {
        aspect-ratio: 1/1;
    }
    
    .product-card h3 {
        font-size: 1.1rem;
    }
    
    .option {
        padding: 0.5rem;
        margin: 0.3rem 0;
        font-size: 0.8rem;
    }
    
    .option span:first-child {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 0.9rem;
    }
    
    .buy-button {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .modal-content {
        margin: 0.5% auto;
        width: 99%;
        padding: 0.8rem;
        max-height: 99vh;
        overflow-y: auto;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .modal-payment-methods {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .modal-payment-card {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 13px;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .payment-instructions {
        padding: 12px;
    }
    
    .instruction-item {
        padding: 10px;
        margin-bottom: 8px;
    }
    
    .instruction-item p {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .instruction-item h5 {
        font-size: 13px;
        margin-bottom: 6px;
    }
}

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

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #a78bfa, #8b5cf6);
}

/* Modal Scrollbar Styling */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(42, 42, 42, 0.5);
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #a78bfa, #8b5cf6);
}

/* Testimoni Page Styles */
.testimoni {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
}

/* Order Status Section */
.order-status-section {
    margin: 80px 0;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(167, 139, 250, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.1);
}

.section-subtitle {
    text-align: center;
    color: #e2e8f0;
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-style: italic;
}

.order-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.order-status-card {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.order-status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
}

.order-status-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.order-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
    background: linear-gradient(45deg, #2a2a2a, #1e1e1e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.order-image img[src=""] {
    display: none;
}

.order-image:not(:has(img[src]))::before {
    content: "📷";
    font-size: 3rem;
    color: #8b5cf6;
    opacity: 0.3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse 2s infinite;
}

.order-image:not(:has(img[src]))::after {
    content: "Loading...";
    font-size: 1rem;
    color: #8b5cf6;
    opacity: 0.5;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse 2s infinite;
}

.order-status-card:hover .order-image img {
    transform: scale(1.05);
}

.order-status-card:hover .order-info h4 {
    color: #a78bfa;
    text-shadow: 0 0 10px rgba(167, 139, 250, 0.5);
}

.order-status-card:hover .order-info p {
    color: #f1f5f9;
}

.order-status-card:hover .order-status.completed {
    background: linear-gradient(45deg, #059669, #10b981);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    transform: scale(1.05);
}

.order-info h4 {
    color: #8b5cf6;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: bold;
}

.order-info p {
    color: #e2e8f0;
    font-size: 1rem;
    margin-bottom: 12px;
}

.order-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-status.completed {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.order-status-note {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
}

.order-status-note i {
    color: #8b5cf6;
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.order-status-note p {
    color: #e2e8f0;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.testimoni-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 1.1rem;
    color: #e2e8f0;
    font-weight: 500;
}

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

.testimoni-card {
    background: rgba(42, 42, 42, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimoni-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
}

.testimoni-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.testimoni-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.user-details h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.user-details p {
    color: #a78bfa;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimoni-content {
    margin-bottom: 1.5rem;
}

.testimoni-content p {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.testimoni-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.game-tag {
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.date {
    color: #9ca3af;
    font-size: 0.8rem;
}

.video-testimoni {
    margin: 4rem 0;
    text-align: center;
}

.video-testimoni h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.video-item {
    background: rgba(42, 42, 42, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.video-item iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.video-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.testimoni-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    margin-top: 4rem;
}

.testimoni-cta h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.testimoni-cta p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.channel-button {
    background: linear-gradient(45deg, #25d366, #128c7e) !important;
    border: 2px solid #25d366 !important;
}

.channel-button:hover {
    background: linear-gradient(45deg, #128c7e, #25d366) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Mobile Responsive for Testimoni */
@media (max-width: 768px) {
    .testimoni-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .testimoni-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimoni-card {
        padding: 1.5rem;
    }
    
    .testimoni-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .user-info {
        gap: 0.75rem;
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-item iframe {
        height: 180px;
    }
    
    .testimoni-cta {
        padding: 2rem 1rem;
    }
    
    .testimoni-cta h3 {
        font-size: 2rem;
    }
    
    .testimoni-cta p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    /* Order Status Mobile */
    .order-status-section {
        margin: 60px 0;
        padding: 40px 20px;
    }
    
    .order-status-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .order-status-card {
        padding: 15px;
    }
    
    .order-image {
        height: 150px;
    }
    
    .order-info h4 {
        font-size: 1.1rem;
    }
    
    .order-info p {
        font-size: 0.9rem;
    }
    
    .order-status {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .order-status-note {
        padding: 15px;
    }
    
    .order-status-note p {
        font-size: 0.9rem;
    }
}

.modal-content {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    margin: 2% auto;
    padding: 1rem;
    border-radius: 15px;
    width: 95%;
    max-width: 600px;
    height: 95vh;
    border: 2px solid #8b5cf6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    padding-bottom: 80px; /* ✨ tambahin ruang buat tombol */
}

