/* ================================
   BLESS YO TRAP - Trap/Hood Style
   ================================ */

:root {
    --purple-main: #8B5CF6;
    --purple-dark: #6D28D9;
    --purple-light: #A78BFA;
    --purple-glow: rgba(139, 92, 246, 0.5);
    --purple-intense: rgba(139, 92, 246, 0.8);
    --black: #000000;
    --black-light: #0a0a0a;
    --black-card: #0d0d0d;
    --white: #FFFFFF;
    --gray: #777777;
    --gray-light: #999999;
    --gray-dark: #1a1a1a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ================================
   Background Effects
   ================================ */

.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.smoke {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, var(--purple-glow) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(60px);
    animation: smokeFloat 25s ease-in-out infinite;
}

.smoke-1 {
    top: -300px;
    left: -200px;
    animation-delay: 0s;
}

.smoke-2 {
    top: 30%;
    right: -300px;
    animation-delay: -8s;
    width: 900px;
    height: 900px;
}

.smoke-3 {
    bottom: -200px;
    left: 20%;
    animation-delay: -16s;
    width: 700px;
    height: 700px;
}

@keyframes smokeFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translate(40px, -30px) scale(1.05);
        opacity: 0.25;
    }
    50% {
        transform: translate(20px, 20px) scale(1.1);
        opacity: 0.2;
    }
    75% {
        transform: translate(-30px, 10px) scale(1.02);
        opacity: 0.25;
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ================================
   Container
   ================================ */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ================================
   Header
   ================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 50%, transparent 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 0 40px var(--purple-glow);
}

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

.logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 3px;
    text-shadow: 0 0 30px var(--purple-glow);
    transition: all 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 40px var(--purple-main), 0 0 80px var(--purple-glow);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple-main);
    box-shadow: 0 0 10px var(--purple-main);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
    text-shadow: 0 0 20px var(--purple-glow);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--purple-glow);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 99;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-nav-link {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray);
    text-decoration: none;
    letter-spacing: 4px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--purple-light);
    text-shadow: 0 0 30px var(--purple-glow);
}

/* ================================
   Hero Section
   ================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    margin-bottom: 50px;
}

.video-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--purple-dark);
    box-shadow:
        0 0 40px var(--purple-glow),
        0 0 80px rgba(139, 92, 246, 0.3),
        inset 0 0 60px rgba(0, 0, 0, 0.5);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.7) 100%
    );
    pointer-events: none;
}

.video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(ellipse at center, var(--purple-intense) 0%, var(--purple-glow) 30%, transparent 60%);
    opacity: 0.5;
    filter: blur(40px);
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}

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

/* Hero Title */
.hero-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 40px;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow:
            0 0 20px var(--purple-glow),
            0 0 40px var(--purple-glow),
            0 0 60px rgba(139, 92, 246, 0.3);
    }
    50% {
        text-shadow:
            0 0 30px var(--purple-main),
            0 0 60px var(--purple-glow),
            0 0 90px rgba(139, 92, 246, 0.4);
    }
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--white) 0%, var(--purple-light) 50%, var(--white) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-main) 0%, var(--purple-dark) 100%);
    color: var(--white);
    box-shadow:
        0 4px 25px var(--purple-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 40px var(--purple-glow),
        0 0 60px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ================================
   About Section - Bento Style
   ================================ */

.about {
    padding: 80px 0 120px;
    position: relative;
}

.about-header {
    margin-bottom: 50px;
}

.about-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--purple-main);
    background: rgba(139, 92, 246, 0.15);
    padding: 8px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 900;
    letter-spacing: 5px;
    color: var(--white);
    text-shadow: 0 0 30px var(--purple-glow);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.bento-card {
    background: linear-gradient(145deg, rgba(35, 35, 40, 0.95) 0%, rgba(25, 25, 30, 0.98) 100%);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 20px;
    padding: 45px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.bento-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top left, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover {
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(139, 92, 246, 0.2);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-number {
    font-family: 'Cinzel Decorative', serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(139, 92, 246, 0.1);
    line-height: 1;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    text-shadow: 0 0 40px transparent;
}

.bento-card:hover .bento-number {
    color: rgba(139, 92, 246, 0.25);
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

.bento-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #b0b0b0;
}

.bento-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-main), var(--purple-light), transparent);
    transition: width 0.5s ease;
    box-shadow: 0 0 20px var(--purple-main);
}

.bento-card:hover .bento-line {
    width: 100%;
}

/* ================================
   Footer
   ================================ */

.footer {
    padding: 50px 0;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    background: linear-gradient(to top, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 0 0 25px var(--purple-glow);
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    background: linear-gradient(135deg, var(--purple-main) 0%, var(--purple-dark) 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--purple-glow);
}

.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px var(--purple-glow);
}

.footer-btn .btn-icon {
    width: 18px;
    height: 18px;
}

/* ================================
   Scroll Animations
   ================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   Responsive Design
   ================================ */

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

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .video-frame {
        max-width: 380px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    .bento-card {
        padding: 35px;
    }

    .bento-number {
        font-size: 4rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

    .footer-links {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .footer-btn {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }

    .video-frame {
        max-width: 300px;
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 5px;
    }

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

    .bento-card {
        padding: 28px;
    }

    .bento-number {
        font-size: 3.5rem;
    }
}

/* ================================
   Scrollbar Styling
   ================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--purple-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--purple-main);
    box-shadow: 0 0 10px var(--purple-glow);
}

/* ================================
   Selection Styling
   ================================ */

::selection {
    background: var(--purple-main);
    color: var(--white);
}
