@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700;900&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

:root {
    --bg-dark: #050508;
    --bg-surface: #0e101a;
    --bg-elevated: #151826;
    --primary-grad: linear-gradient(135deg, #FF007A 0%, #7928CA 100%);
    --accent: #00E5FF;
    --text-main: #ffffff;
    --text-muted: #8892b0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --card-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

.text-gradient {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-grad);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 0, 122, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #7928CA 0%, #FF007A 100%);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 122, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 229, 255, 0.05);
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    padding: 20px 0;
    transition: var(--transition);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    text-decoration: none;
    color: #fff;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-grad);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu {
    display: flex;
    gap: 40px;
}

.main-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.main-menu a:hover {
    color: #fff;
}

/* HERO SECTION */
.hero-section {
    padding: 220px 0 120px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 80px;
    margin-bottom: 24px;
    letter-spacing: -2px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 22px;
    color: #E2E8F0;
    max-width: 650px;
    margin: 0 auto 40px;
    font-weight: 400;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

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

.hero-image-wrapper {
    margin-top: 40px;
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* BENTO FEATURES */
.bento-section {
    padding: 60px 0;
}

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

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
}

.bento-item {
    background: var(--bg-surface);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.bento-item.large {
    grid-column: span 2;
    background: linear-gradient(135deg, #151826 0%, #0e101a 100%);
}

.bento-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--accent);
}

.bento-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.bento-item p {
    color: var(--text-muted);
    font-size: 15px;
}

.bento-bg-image {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 200px;
    opacity: 0.2;
    transition: var(--transition);
}

.bento-item:hover .bento-bg-image {
    opacity: 0.4;
    transform: scale(1.05);
}

/* PRICING SECTION */
.pricing-section {
    padding: 60px 0;
    background: #000;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

.pricing-card {
    background: var(--bg-surface);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 30px 20px;
    transition: var(--transition);
}

.pricing-card.premium {
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
    border: 1px solid rgba(0, 229, 255, 0.3);
    transform: scale(1.05);
    position: relative;
}

.pricing-card.premium::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 24px;
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.1);
    pointer-events: none;
}

.pricing-card:hover {
    border-color: rgba(255,255,255,0.2);
}

.pricing-card.premium:hover {
    border-color: var(--accent);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-grad);
    color: #fff;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.plan-duration {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
}

.plan-price span {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-list {
    list-style: none;
    margin-bottom: 40px;
}

.plan-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--card-border);
    color: #d1d5db;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

.plan-list li:last-child {
    border-bottom: none;
}

/* FOOTER */
.site-footer {
    padding: 60px 0 20px;
    border-top: 1px solid var(--card-border);
    background: #030408;
}

.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-desc {
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 300px;
}

.footer-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--card-border);
    color: #666;
}

/* INNER PAGES */
.page-header {
    padding: 120px 0 40px;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(255, 0, 122, 0.1), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 229, 255, 0.05), transparent 50%);
    text-align: center;
    border-bottom: 1px solid var(--card-border);
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.inner-content {
    padding: 40px 0;
}

/* CHANNELS PAGE */
.channel-category {
    margin-bottom: 40px;
}

.channel-category h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.channel-category h3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--card-border) 0%, transparent 100%);
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.channel-card {
    background: var(--bg-surface);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.channel-card:hover {
    background: var(--bg-elevated);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.1);
    color: var(--accent);
}

/* SETUP PAGE */
.setup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.setup-card {
    background: var(--bg-surface);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.setup-card h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #fff;
}

.setup-step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.step-number {
    width: 36px;
    height: 36px;
    background: rgba(255,0,122,0.1);
    color: #FF007A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.step-text {
    color: var(--text-muted);
    font-size: 16px;
    padding-top: 6px;
}

.step-text strong {
    color: #fff;
}

/* CONTACT PAGE */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-dark) 100%);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
}

.contact-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--card-border);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .pricing-card.premium {
        transform: none;
    }
}

@media (max-width: 768px) {
    .main-menu { display: none; }
    .hero-content h1 { font-size: 48px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-item.large { grid-column: span 1; }
    .footer-layout { grid-template-columns: 1fr; gap: 40px; }
}
