:root {
    /* Brand Colors - Updated for Blyza Entertainment */
    --blyza-orange-primary: #FF8833;
    --blyza-purple-secondary: #CB7AE1;
    --blyza-yellow-accent: #FFDF00;
    --blyza-keppel-accent: #00BFA6;
    
    /* Dark gradients for backgrounds */
    --bg-dark-gradient: linear-gradient(180deg, #0D0D0D 0%, #1A0F24 50%, #0D0D0D 100%);
    --bg-dark-plum: #0D0D0D;
    --bg-almost-black: #0D0D0D;
    
    /* Text Colors */
    --text-light: #FDFEFE;
    --text-dark: #2C3A47;
    --text-medium: #535c68;
    
    /* Utility Colors */
    --black-stroke: #1A1A1A;
    --white-stroke: #F0F0F0;
    
    /* Typography */
    --font-logo: "Luckiest Guy", cursive;
    --font-heading-alt: "Bungee", cursive;
    --font-body: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Layout */
    --nav-height: 70px;
    --border-radius-card: 12px;
    --shadow-chunky: 4px 4px 0px var(--black-stroke);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.15);
    
    /* Spacing */
    --section-padding: 50px;
    --card-gap: 1.5rem;
}

/* === RESET & BASE === */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, 
        #1A0F2E 0%, 
        #2D1B3D 15%, 
        #1F1535 30%, 
        #2A1840 50%, 
        #1A0F2E 70%, 
        #261538 85%, 
        #1A0F2E 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Game Show Lighting Effects - More Vibrant */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 136, 51, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(203, 122, 225, 0.18) 0%, transparent 30%),
        radial-gradient(circle at 40% 70%, rgba(255, 223, 0, 0.12) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255, 136, 51, 0.12) 0%, transparent 30%),
        radial-gradient(circle at 10% 90%, rgba(203, 122, 225, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 60% 50%, rgba(255, 223, 0, 0.08) 0%, transparent 35%);
    pointer-events: none;
    z-index: 0;
    animation: rotateLights 40s linear infinite;
}

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

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    line-height: 1.2;
}

h1 {
    font-family: var(--font-logo);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 0.3em;
    font-weight: 400;
}

h2 {
    font-family: var(--font-logo);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 0.4em;
    font-weight: 400;
}

h3 {
    font-family: var(--font-heading-alt);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 0.3em;
    font-weight: 400;
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 0.8em;
}

.text-center {
    text-align: center;
}

/* === HEADER === */
#main-header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: var(--nav-height);
    border-bottom: 1px solid rgba(255, 136, 51, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-section img {
    height: 40px;
    width: auto;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main-text {
    font-family: var(--font-logo);
    font-size: 1.1rem;
    color: var(--blyza-orange-primary);
    line-height: 1;
    letter-spacing: 0.5px;
}

.logo-sub-text {
    font-size: 0.65rem;
    color: var(--blyza-yellow-accent);
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.nav-link-button {
    color: var(--text-light);
    font-weight: 600;
    text-decoration: none;
    padding: 0.5em 1em;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
}

.nav-link-button:hover {
    background-color: rgba(255, 136, 51, 0.15);
    border-color: var(--blyza-orange-primary);
    transform: translateY(-1px);
}

.nav-link-button.btn-play-now {
    background-color: var(--blyza-yellow-accent);
    color: #0D0D0D;
    border: 2px solid var(--blyza-yellow-accent);
    font-weight: 700;
}

.nav-link-button.btn-play-now:hover {
    background-color: var(--blyza-orange-primary);
    border-color: var(--blyza-orange-primary);
    color: var(--text-light);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
}

/* === BUTTONS === */
.btn {
    font-family: var(--font-heading-alt);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    padding: 0.8em 1.8em;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--blyza-yellow-accent);
    color: #0D0D0D;
    border-color: var(--blyza-yellow-accent);
}

.btn-primary:hover {
    background-color: var(--blyza-orange-primary);
    border-color: var(--blyza-orange-primary);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 191, 166, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--blyza-purple-secondary);
}

.btn-secondary:hover {
    background-color: var(--blyza-purple-secondary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-ghost {
    background-color: transparent;
    color: var(--blyza-yellow-accent);
    border: 2px solid var(--blyza-yellow-accent);
}

.btn-ghost:hover {
    background-color: var(--blyza-yellow-accent);
    color: #0D0D0D;
}

/* === SECTIONS === */
section {
    padding: var(--section-padding) 0;
    position: relative;
    background: transparent;
    z-index: 1;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(255, 136, 51, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(255, 223, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.section-dark {
    background: transparent;
}

.section-plum {
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    margin-bottom: 0.5em;
}

.section-header p {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === HERO SECTION === */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 40px;
    background: url('../Blyza - Elevator Pitch.png') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

/* Dark overlay for text visibility */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 13, 13, 0.85) 0%,
        rgba(26, 15, 36, 0.75) 30%,
        rgba(45, 27, 61, 0.70) 50%,
        rgba(26, 15, 36, 0.75) 70%,
        rgba(13, 13, 13, 0.85) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Main Spotlight Effect */
.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(255, 136, 51, 0.15) 0%, rgba(203, 122, 225, 0.12) 30%, rgba(255, 223, 0, 0.08) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 136, 51, 0.2) 0%, rgba(203, 122, 225, 0.15) 40%, rgba(255, 223, 0, 0.1) 60%, transparent 80%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseGlow {
    0%, 100% { 
        opacity: 0.5; 
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.8; 
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    margin-bottom: 0.3em;
}

/* Smaller hero for secondary pages */
.hero-secondary {
    min-height: 50vh !important;
    padding-top: calc(var(--nav-height) + 20px) !important;
    padding-bottom: 20px !important;
}

.hero .subheadline {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5em;
    line-height: 1.5;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.credibility-strip {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 223, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.credibility-item {
    text-align: center;
}

.credibility-number {
    font-family: var(--font-heading-alt);
    font-size: 1.8rem;
    color: var(--blyza-orange-primary);
    display: block;
    font-weight: 600;
}

.credibility-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === CARDS === */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--card-gap);
    margin-top: 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 136, 51, 0.2);
    border-radius: var(--border-radius-card);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 1;
    transform: translateY(0);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blyza-orange-primary), var(--blyza-yellow-accent));
    transition: height 0.3s ease;
}

.card:hover::before {
    height: 5px;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--blyza-orange-primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 
        0 10px 40px rgba(255, 136, 51, 0.25),
        0 0 60px rgba(255, 136, 51, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--blyza-orange-primary);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-icon {
    transform: scale(1.15);
    color: var(--blyza-yellow-accent);
}

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

.card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.card ul {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.card ul li {
    padding: 0.5em 0;
    padding-left: 1.5em;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--blyza-yellow-accent);
    font-size: 1.5em;
    line-height: 1;
}

.card .btn {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    padding: 0.7em 1.5em;
}

/* === TWO COLUMN LAYOUT === */
.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

/* === BRAND LOGOS === */
.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    margin: 3rem 0;
}

.brand-logo {
    opacity: 0.6;
    filter: grayscale(100%) brightness(2);
    transition: all 0.3s ease;
    height: 50px;
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

/* === CTA STRIP === */
.cta-strip {
    background: linear-gradient(135deg, rgba(255, 136, 51, 0.15), rgba(0, 191, 166, 0.15));
    border: 1px solid rgba(0, 191, 166, 0.3);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: var(--border-radius-card);
    margin: 3rem 0;
}

.cta-strip h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-strip .cta-buttons {
    margin-bottom: 0;
}

/* === BLYZA LOOP === */
.blyza-loop {
    background: rgba(0, 191, 166, 0.05);
    border: 2px dashed var(--blyza-yellow-accent);
    border-radius: var(--border-radius-card);
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
}

.blyza-loop h3 {
    color: var(--blyza-orange-primary);
    margin-bottom: 1.5rem;
}

.loop-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.loop-item {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--blyza-yellow-accent);
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    font-family: var(--font-heading-alt);
    font-size: 0.9rem;
    color: var(--text-light);
    position: relative;
}

.loop-arrow {
    font-size: 1.5rem;
    color: var(--blyza-yellow-accent);
}

/* === FOOTER === */
#main-footer {
    background: #0A0A0A;
    border-top: 1px solid rgba(0, 191, 166, 0.2);
    padding: 50px 0 25px;
    color: var(--text-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand h3 {
    font-family: var(--font-logo);
    color: var(--blyza-orange-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    font-family: var(--font-heading-alt);
    color: var(--blyza-orange-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--blyza-orange-primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--blyza-purple-secondary);
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* === FORM STYLES === */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 136, 51, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blyza-orange-primary);
    background: rgba(255, 255, 255, 0.08);
}

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

/* === SMOOTH ANIMATIONS === */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-60px) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

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

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

.animate-in {
    animation: slideInFromLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Alternate animation for variety */
.animate-in:nth-child(even) {
    animation: slideInFromRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Stagger animation delays */
.animate-in:nth-child(1) {
    animation-delay: 0.1s;
}

.animate-in:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-in:nth-child(3) {
    animation-delay: 0.3s;
}

.animate-in:nth-child(4) {
    animation-delay: 0.4s;
}

.animate-in:nth-child(5) {
    animation-delay: 0.5s;
}

.animate-in:nth-child(6) {
    animation-delay: 0.6s;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    :root {
        --section-padding: 40px;
        --nav-height: 70px;
    }
    
    .header-container {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 1.5rem 0;
        gap: 0;
        border-bottom: 2px solid var(--blyza-orange-primary);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link-button {
        width: 90%;
        margin: 0.5rem auto;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .credibility-strip {
        gap: 1rem;
    }
    
    .loop-visual {
        flex-direction: column;
    }
    
    .loop-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 640px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .logo-main-text {
        font-size: 1.2rem;
    }
    
    .logo-sub-text {
        font-size: 0.6rem;
    }
    
    .hero {
        padding-top: calc(var(--nav-height) + 40px);
    }
}
