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

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

:root {
    --primary: #FF6B35;
    --primary-light: #FF8C5A;
    --accent: #00D9FF;
    --accent-dark: #00B8D4;
    --gold: #FFD700;
    --dark-bg: #0A1628;
    --dark-surface: #0F2340;
    --dark-card: #142D4C;
    --dark-card-light: #1A3A52;
    --text-primary: #FFFFFF;
    --text-secondary: #A0AEC0;
    --text-tertiary: #7A8BA8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 217, 255, 0.15);
    animation: slideDown 0.6s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4%;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: 3px;
    cursor: pointer;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #000;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 4%;
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: slideInLeft 0.8s ease-out;
    letter-spacing: -2px;
}

.hero-content h1 .gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.button-group {
    display: flex;
    gap: 1.5rem;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #000;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 0.95rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.3);
    transform: translateY(-4px);
}

.hero-visual {
    position: relative;
    height: 600px;
    animation: slideInRight 0.8s ease-out 0.3s both;
}

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

.hero-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-card-light) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.25);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-card::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-30px) translateX(30px); }
    50% { transform: translateY(-60px) translateX(0); }
    75% { transform: translateY(-30px) translateX(-30px); }
}

.hero-creature {
    position: relative;
    z-index: 2;
    font-size: 200px;
    animation: bounce 3s ease-in-out infinite;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 8s ease-in-out infinite;
}

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

/* ===== SECTION STYLING ===== */
section {
    padding: 80px 4%;
    max-width: 1600px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 5rem;
    letter-spacing: -1px;
}

.section-title .gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FEATURES SECTION ===== */
.features {
    background: linear-gradient(135deg, rgba(15, 35, 64, 0.5) 0%, rgba(20, 45, 76, 0.5) 100%);
    border-radius: 16px;
    padding: 80px 4%;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-card-light) 100%);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.25);
}

.feature-card:hover::before {
    right: -10%;
    top: -10%;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: fadeIn 0.6s ease;
    width: 80px;
    height: 80px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon img {
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* ===== CREATURES SHOWCASE ===== */
.creatures-section {
    background: linear-gradient(135deg, rgba(15, 35, 64, 0.3) 0%, rgba(20, 45, 76, 0.3) 100%);
}

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

.featured-item {
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-card-light) 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
}

.featured-item:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
    transform: translateY(-8px);
}

.featured-image {
    width: 100%;
    height: 160px;
    background: linear-gradient(45deg, rgba(0, 217, 255, 0.1), rgba(255, 107, 53, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    overflow: hidden;
}

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

.featured-item:hover .featured-image img {
    transform: scale(1.1);
}

.featured-details {
    padding: 1.5rem;
}

.featured-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.featured-description {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.featured-tag {
    display: inline-block;
    background: rgba(0, 217, 255, 0.15);
    color: var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.creature-showcase {
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-card-light) 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.creature-showcase:hover {
    transform: scale(1.08);
    box-shadow: 0 25px 60px rgba(0, 217, 255, 0.3);
    border-color: var(--accent);
}

.creature-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    position: relative;
    overflow: hidden;
}

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

.creature-showcase:hover .creature-image img {
    transform: scale(1.1);
}

.creature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.creature-info {
    padding: 2rem;
}

.creature-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.creature-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.creature-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.creature-type {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.creature-price {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.2rem;
}

/* ===== ASSET CATEGORIES ===== */
.categories-section {
    background: linear-gradient(135deg, rgba(15, 35, 64, 0.4) 0%, rgba(20, 45, 76, 0.4) 100%);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.category-card {
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-card-light) 100%);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    top: 0;
    left: -100%;
    transition: left 0.4s ease;
}

.category-card:hover::before {
    left: 0;
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.25);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon img {
    transform: scale(1.15);
}

.category-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.category-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: linear-gradient(135deg, rgba(15, 35, 64, 0.3) 0%, rgba(20, 45, 76, 0.3) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.pricing-card {
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-card-light) 100%);
    border: 2px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.08);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.3);
}

.pricing-card.featured::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #000;
    padding: 0.5rem 1.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.pricing-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.price-tag {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 900;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.pricing-card .btn-primary {
    width: 100%;
    text-align: center;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: linear-gradient(135deg, rgba(15, 35, 64, 0.4) 0%, rgba(20, 45, 76, 0.4) 100%);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--dark-card);
    border: 1px solid rgba(0, 217, 255, 0.2);
    color: var(--text-secondary);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: var(--dark-card);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
}

.gallery-image {
    width: 100%;
    height: 150px;
    background: linear-gradient(45deg, rgba(0, 217, 255, 0.1), rgba(255, 107, 53, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    position: relative;
    overflow: hidden;
}

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

.gallery-item:hover .gallery-image img {
    transform: scale(1.15);
}

.gallery-item-info {
    padding: 1rem;
}

.gallery-item-name {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.gallery-item-type {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ===== NEWS SECTION ===== */
.news-section {
    background: linear-gradient(135deg, rgba(15, 35, 64, 0.3) 0%, rgba(20, 45, 76, 0.3) 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.news-featured {
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-card-light) 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.25);
}

.news-featured-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
}

.news-featured-content {
    padding: 2.5rem;
}

.news-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.news-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.news-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-item {
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-card-light) 100%);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-item:hover {
    border-color: var(--accent);
    transform: translateX(8px);
}

.news-item-date {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.news-item-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.news-item-preview {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: linear-gradient(135deg, rgba(15, 35, 64, 0.4) 0%, rgba(20, 45, 76, 0.4) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-content h2 .gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.value-item {
    background: var(--dark-card);
    border: 1px solid rgba(0, 217, 255, 0.15);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.value-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-description {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.about-visual {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-card-light) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
}

.about-visual::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

/* ===== TEASE SECTION ===== */
.tease-section {
    background: linear-gradient(135deg, rgba(15, 35, 64, 0.8) 0%, rgba(20, 45, 76, 0.8) 100%);
    padding: 120px 4%;
    position: relative;
    overflow: hidden;
}

.tease-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    font-size: 200px;
    opacity: 0.03;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    top: 50%;
    right: 15%;
    animation-delay: -7s;
}

.shape-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: -14s;
}

.tease-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tease-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.badge-text {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tease-content {
    animation: slideInLeft 0.8s ease-out;
}

.tease-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.tease-title .gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tease-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tease-highlight-box {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.highlight-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-text h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--accent);
}

.highlight-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.premium-timer {
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-card-light) 100%);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.premium-timer h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.timer-unit {
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    min-width: 90px;
    transition: all 0.3s ease;
}

.timer-unit:hover {
    border-color: var(--accent);
    background: rgba(0, 217, 255, 0.15);
    transform: translateY(-2px);
}

.timer-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.timer-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.timer-separator {
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 700;
    opacity: 0.5;
}

.tease-features-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.feature-list-item:hover {
    color: var(--accent);
    transform: translateX(8px);
}

.feature-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #000;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tease-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tease-email-form {
    display: flex;
    gap: 0.75rem;
    background: rgba(20, 45, 76, 0.3);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.tease-email-form:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
}

.tease-email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.tease-email-input::placeholder {
    color: var(--text-tertiary);
}

.tease-email-input:focus {
    outline: none;
}

.tease-email-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
    white-space: nowrap;
}

.tease-email-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.tease-follow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    position: relative;
}

.follow-icon {
    font-size: 1.2rem;
}

.tease-benefit-box {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.benefit-icon {
    font-size: 1.5rem;
}

.tease-guarantee strong {
    color: var(--gold);
}

.tease-social-proof {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.proof-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.avatar-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -10px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid var(--dark-bg);
    margin-left: -10px;
    transition: all 0.3s ease;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: translateY(-8px);
    z-index: 10;
}

.tease-visual-enhanced {
    animation: slideInRight 0.8s ease-out 0.2s both;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tease-card-premium {
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-card-light) 100%);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.tease-card-premium:hover {
    border-color: var(--accent);
    box-shadow: 0 30px 80px rgba(0, 217, 255, 0.3);
    transform: translateY(-8px);
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.card-content {
    position: relative;
    z-index: 2;
}

.tease-animation-box {
    position: relative;
    width: 200px;
    height: 200px;
    perspective: 1000px;
    margin: 0 auto 2rem;
    display: none; /* Hidden - replaced with image */
}

.rotating-cube-enhanced {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCubeEnhanced 12s infinite linear;
}

@keyframes rotateCubeEnhanced {
    0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    33% { transform: rotateX(90deg) rotateY(90deg) rotateZ(0deg); }
    66% { transform: rotateX(180deg) rotateY(180deg) rotateZ(45deg); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    background: rgba(20, 45, 76, 0.5);
    opacity: 0.9;
    backface-visibility: hidden;
}

.cube-face:nth-child(1) { transform: rotateY(0deg) translateZ(100px); }
.cube-face:nth-child(2) { transform: rotateY(90deg) translateZ(100px); }
.cube-face:nth-child(3) { transform: rotateY(180deg) translateZ(100px); }
.cube-face:nth-child(4) { transform: rotateY(270deg) translateZ(100px); }
.cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(100px); }
.cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(100px); }

.tease-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.tease-card-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.mini-feature-card {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mini-feature-card:hover {
    border-color: var(--accent);
    background: rgba(0, 217, 255, 0.1);
    transform: translateY(-6px);
}

.highlight-media {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.highlight-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-image {
    transform: scale(1.1);
}

.tease-main-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(0, 217, 255, 0.05);
}

.main-feature-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.tease-card-premium:hover .main-feature-image {
    transform: scale(1.08);
}

.mini-media {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0.75rem;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 8px;
}

.mini-feature-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.mini-feature-card:hover .mini-feature-image {
    transform: scale(1.15);
}

.comparison-image {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    background: rgba(0, 217, 255, 0.05);
}

.comparison-feature-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.comparison-item:hover .comparison-feature-image {
    transform: scale(1.12);
}

.mini-feature-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

.tease-comparison {
    max-width: 1600px;
    margin: 0 auto;
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
    z-index: 1;
}

.comparison-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.comparison-item {
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-card-light) 100%);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.25);
    transform: translateY(-8px);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comparison-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #000;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.2rem;
}

.comparison-header h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.comparison-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.progress-bar {
    height: 6px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 3px;
    transition: width 1s ease;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark-surface);
    border-top: 1px solid rgba(0, 217, 255, 0.15);
    padding: 4rem 4% 2rem;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col a,
.footer-col p {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    color: var(--text-tertiary);
    font-size: 0.85rem;
    max-width: 1600px;
    margin: 0 auto;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 4%;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-visual {
        height: 400px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .tease-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tease-title {
        font-size: 2.5rem;
    }

    .tease-features {
        grid-template-columns: 1fr;
    }

    .timer-display {
        flex-wrap: wrap;
    }

    .tease-cta-group {
        flex-direction: column;
    }

    .tease-email-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        display: none;
    }

    .nav-cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .button-group {
        flex-direction: column;
    }

    .feature-grid,
    .showcase-grid,
    .category-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .tease-content {
        order: 2;
    }

    .tease-visual {
        order: 1;
    }

    .tease-title {
        font-size: 2rem;
    }

    .tease-subtitle {
        font-size: 1rem;
    }

    .countdown-timer {
        padding: 1.5rem;
    }

    .timer-unit {
        min-width: 60px;
        padding: 0.8rem 1rem;
    }

    .timer-value {
        font-size: 1.5rem;
    }

    .timer-separator {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem 3%;
    }

    .logo {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-creature {
        font-size: 120px;
    }

    .tease-title {
        font-size: 1.5rem;
    }

    .tease-subtitle {
        font-size: 0.9rem;
    }

    .countdown-timer h3 {
        font-size: 1rem;
    }

    .timer-unit {
        min-width: 50px;
        padding: 0.6rem 0.8rem;
    }

    .timer-value {
        font-size: 1.2rem;
    }

    .tease-email-form {
        flex-direction: column;
    }

    .tease-email-input,
    .tease-email-btn {
        width: 100%;
    }

    .tease-cta-group {
        flex-direction: column;
    }

    .tease-cta-group .btn-primary,
    .tease-cta-group .btn-secondary {
        width: 100%;
    }

    .highlight-media {
        height: 60px;
    }

    .tease-main-image {
        height: 150px;
    }

    .mini-media {
        height: 60px;
    }

    .comparison-image {
        height: 80px;
    }
}

@media (max-width: 1024px) {
    .highlight-media {
        height: 80px;
    }

    .tease-main-image {
        height: 180px;
    }

    .comparison-image {
        height: 100px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}