/* ===============================
   ROOT VARIABLES
================================ */
:root {
    --bg-main: #0f0f0f;
    --bg-soft: #151515;
    --bg-card: #1b1b1b;

    --primary: #ff0057;
    --secondary: #ff7a00;
    --accent: #7f00ff;

    --text-main: #ffffff;
    --text-muted: #b3b3b3;

    --radius-lg: 18px;
    --radius-md: 14px;
}

/* ===============================
   GLOBAL
================================ */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ===============================
   HEADER
================================ */
.header {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease;
}

.header.shrink {
    background: rgba(0,0,0,0.95);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 46px;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo {
    transform: scale(0.96);
}

/* ===============================
   NAVIGATION
================================ */
nav {
    display: flex;
    align-items: center;
}

nav a {
    color: var(--text-muted);
    margin-left: 26px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
    color: var(--text-main);
}

nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px;
}

/* ===============================
   HERO
================================ */
.hero {
    text-align: center;
    padding: 110px 20px;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary),
        var(--accent)
    );
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* ===============================
   SECTION
================================ */
.section {
    max-width: 1200px;
    margin: -70px auto 90px;
    padding: 60px 40px;
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}

.no-hero {
    margin-top: 60px !important;
}

/* ===============================
   CARDS
================================ */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
    margin-top: 30px;
}

.card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-md);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.65);
}

/* ===============================
   CONTACT PAGE
================================ */
.contact-section {
    text-align: center;
}

.contact-subtitle {
    color: var(--text-muted);
    margin-bottom: 45px;
    font-size: 1.05rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
}

.contact-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.35s ease;
}

.contact-card h3 {
    margin-top: 0;
    font-size: 1.35rem;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 45px rgba(0,0,0,0.65);
}

/* ===============================
   CONTACT ICONS
================================ */
.contact-icon {
    font-size: 2.6rem;
    margin-bottom: 15px;
}

.contact-icon.email { color: #4fc3f7; }

.contact-icon.instagram {
    background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-icon.facebook { color: #1877f2; }
.contact-icon.youtube { color: #ff0000; }

/* ===============================
   FOLLOW BUTTON
================================ */
.follow-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 22px;
    border-radius: 22px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.follow-btn.insta {
    background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
    color: #fff;
}

.follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}

/* ===============================
   SUBSCRIBE CTA
================================ */
.subscribe-box {
    margin-top: 80px;
    padding: 55px 35px;
    text-align: center;
    background: linear-gradient(
        135deg,
        rgba(255,0,87,0.22),
        rgba(127,0,255,0.22)
    );
    border-radius: var(--radius-lg);
}

.subscribe-box h3 {
    font-size: 1.9rem;
    margin-bottom: 12px;
}

.subscribe-box p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #ff0000;
    color: #fff;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    animation: pulse 1.6s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 15px 40px rgba(255,0,0,0.55);
}

.subscribe-btn i {
    font-size: 1.2rem;
}

/* ===============================
   ANIMATIONS
================================ */
.animate-fade {
    animation: fadeIn 0.9s ease forwards;
}

.animate-up {
    opacity: 0;
    transform: translateY(32px);
    animation: slideUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.35s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.65s; }
.delay-5 { animation-delay: 0.8s; }
.delay-6 { animation-delay: 0.95s; }

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.6); }
    70% { box-shadow: 0 0 0 18px rgba(255,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}

/* ===============================
   VIDEOS PAGE
================================ */
.video-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.video-filters button {
    background: var(--bg-card);
    border: none;
    padding: 10px 22px;
    color: var(--text-main);
    border-radius: 20px;
    cursor: pointer;
}

.video-filters button.active {
    background: var(--primary);
}

.loader {
    text-align: center;
    margin-top: 40px;
    color: var(--text-muted);
}

/* ===============================
   FOOTER
================================ */
.footer {
    background: #000;
    padding: 28px 20px;
    text-align: center;
    color: var(--text-muted);
}

/* ===============================
   HAMBURGER
================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px,-6px);
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {

    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #0f0f0f;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: right 0.4s ease;
    }

    nav.active {
        right: 0;
    }

    nav a {
        margin: 18px 0;
        font-size: 1.2rem;
    }

    nav a.active::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section {
        padding: 40px 24px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}