@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Orbitron:wght@600;700;800&display=swap');

:root {
    --bg-dark: #070707;
    --card-bg: rgba(20, 20, 20, 0.7);
    --accent-blue: #00d2ff;
    --accent-purple: #9d50bb;
    --accent-gold: #fbc02d;
    --text-white: #f8f9fa;
    --text-gray: #b0b0b0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-shadow: 0 0 25px rgba(157, 80, 187, 0.2);
}

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

body {
    background: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(157, 80, 187, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 210, 255, 0.1) 0%, transparent 40%);
}

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

/* Header/Hero Section */
.hero {
    text-align: center;
    padding: 6rem 0 4rem;
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    background: linear-gradient(to right, #00d2ff, #9d50bb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--glow-shadow);
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
}

.product-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: '⚡';
    margin-right: 10px;
    font-size: 0.9rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
}

.buy-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #9d50bb, #6e48aa);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.buy-btn:hover {
    background: linear-gradient(45deg, #6e48aa, #9d50bb);
    box-shadow: 0 0 20px rgba(157, 80, 187, 0.4);
    letter-spacing: 1px;
}

.vip-card {
    border: 1px solid var(--accent-gold) !important;
}

.vip-card .product-price {
    color: var(--accent-gold);
}

.vip-card .buy-btn {
    background: linear-gradient(45deg, #fbc02d, #f57f17);
}

/* Footer / Discord */
.discord-notice {
    margin-top: 5rem;
    background: rgba(88, 101, 242, 0.1);
    border: 1px dashed rgba(88, 101, 242, 0.4);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
}

.discord-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #5865f2;
    text-decoration: none;
    margin-top: 1rem;
    transition: 0.3s;
}

.discord-link:hover {
    color: white;
    text-shadow: 0 0 10px #5865f2;
}

/* Product Detail Page Styles */
.detail-container {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    backdrop-filter: blur(20px);
}

.detail-header {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.detail-header-img {
    width: 400px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.detail-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.detail-section h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
    border: 1px solid var(--glass-border);
}

.video-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-link-card {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://img.youtube.com/vi/placeholder/0.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--accent-purple);
    margin-bottom: 2rem;
    transition: 0.3s;
    text-decoration: none;
    color: white;
}

.video-link-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px var(--accent-purple);
}

.play-icon-large {
    font-size: 5rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--accent-purple));
}

.video-link-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
}

.price-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.plan-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.plan-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent-blue);
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 1rem 0;
}

.back-btn {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: 0.3s;
}

.back-btn:hover {
    color: var(--accent-blue);
}

.rainbow-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    background: linear-gradient(to right, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #8b00ff, #ff0000);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow-scroll 3s linear infinite;
    display: inline-block;
}

@keyframes rainbow-scroll {
    to { background-position: 200% center; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile responsive */
@media (max-width: 900px) {
    .detail-header { flex-direction: column; text-align: center; }
    .detail-header-img { width: 100%; }
    .detail-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3rem; }
    .container { padding: 1rem; }
    .price-plans { grid-template-columns: 1fr; }
}