/* ================================================================
   DMCA.CSS — Grizzly Stream — Design complet v2
   Palette : --accent-bright #e50914 / noir #0a0a0a
   ================================================================ */

:root {
    --bg-primary:    #0a0a0a;
    --bg-secondary:  #141414;
    --bg-card:       #1a1a1a;
    --text-primary:  #ffffff;
    --text-secondary:#b3b3b3;
    --text-muted:    #555555;
    --accent-bright: #e50914;
    --accent-main:   #e50914;
    --accent-main-glow: rgba(229,9,20,0.35);
    --accent-blue:   #ff6b81;
    --accent-cyan:   #ff8c00;
    --accent-green:  #ffd700;
    --accent-gold:   #f9ca24;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Work Sans', sans-serif;
    background: #0a0a0a;
    color: var(--text-primary);
    overflow-x: hidden;
}

/* CANVAS PARTICULES */
#particlesCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
    position: fixed; top:0; left:0; right:0;
    z-index: 1000;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 60px; gap: 20px;
    transition: all 0.4s ease;
    background: transparent; backdrop-filter: none;
}
.navbar.scrolled {
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo {
    font-family: 'Bebas Neue', cursive; font-size: 38px;
    letter-spacing: 3px; color: var(--accent-bright);
    text-shadow: 2px 2px 10px rgba(229,9,20,0.6);
    cursor: pointer; text-decoration: none;
}
.nav-links { display:flex; gap:35px; list-style:none; }
.nav-links a {
    color: var(--text-primary); text-decoration: none;
    font-size: 16px; font-weight: 500; transition: all 0.3s; position:relative;
}
.nav-links a::after {
    content:''; position:absolute; bottom:-5px; left:0; width:0; height:2px;
    background: var(--accent-bright); transition: width 0.3s;
}
.nav-links a:hover::after { width:100%; }
.nav-links a:hover { color: var(--accent-bright); }
.nav-right { display:flex; align-items:center; gap:15px; }

/* SEARCH */
.search-container { position:relative; }
.search-wrapper { position:relative; display:flex; align-items:center; }
.search-input {
    width:240px; padding:10px 40px;
    border-radius:25px; border:1px solid rgba(255,255,255,0.2);
    background:#000; color:white; outline:none;
    font-family:'Work Sans',sans-serif; font-size:14px;
    transition: all 0.3s;
}
.search-input:focus { border-color:rgba(255,255,255,0.4); }
.search-input::placeholder { color:rgba(255,255,255,0.6); }
.search-icon {
    position:absolute; top:50%; left:12px; transform:translateY(-50%);
    fill:rgba(255,255,255,0.7); width:18px; height:18px; pointer-events:none;
}
.search-clear {
    position:absolute; top:50%; right:12px; transform:translateY(-50%);
    background:transparent; border:none; color:rgba(255,255,255,0.7);
    font-size:20px; cursor:pointer; opacity:0; transition:opacity 0.2s;
    width:24px; height:24px; display:flex; align-items:center; justify-content:center;
}
.search-results {
    display:none; position:absolute; top:calc(100% + 5px); left:0;
    width:320px; background:rgba(20,20,20,0.98); backdrop-filter:blur(20px);
    border-radius:12px; border:1px solid rgba(255,255,255,0.1);
    max-height:400px; overflow-y:auto; z-index:1001;
    box-shadow:0 16px 40px rgba(0,0,0,0.6);
}
.search-results.active { display:block; }
.search-result-item {
    display:flex; align-items:center; gap:12px; padding:12px 15px;
    border-bottom:1px solid rgba(255,255,255,0.05); cursor:pointer;
    transition:background 0.2s;
}
.search-result-item:hover { background:rgba(255,255,255,0.05); }
.search-result-poster { width:40px; height:60px; object-fit:cover; border-radius:4px; }
.search-result-title { font-size:14px; font-weight:600; color:white; margin-bottom:3px; }
.search-result-meta { display:flex; gap:8px; font-size:12px; color:var(--text-secondary); }
.search-result-rating { color:var(--accent-gold); font-weight:600; }
.search-show-all {
    padding:14px; text-align:center; color:var(--accent-bright);
    font-weight:600; font-size:13px; cursor:pointer; border-top:1px solid rgba(255,255,255,0.05);
}
.search-show-all:hover { background:rgba(229,9,20,0.06); }
.result-type-film  { color:#e50914 !important; font-weight:700; }
.result-type-serie { color:#e50914 !important; font-weight:700; }

/* BTN CONNEXION */
.btn-connexion {
    display:inline-flex; align-items:center; gap:8px; padding:8px 16px;
    background:transparent; color:white; text-decoration:none;
    border-radius:50px; font-size:14px; font-weight:400;
    border:1px solid rgba(255,255,255,0.2); transition:all 0.3s; cursor:pointer;
}
.connexion-icon {
    width:20px; height:20px;
    background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>') no-repeat center / contain;
}
.connexion-text { margin-right:2px; }
.connexion-arrow { font-size:10px; opacity:0.7; }
.btn-connexion:hover { background:rgba(255,255,255,0.06); }

/* BURGER */
.burger { position:relative; width:40px; height:30px; cursor:pointer; display:none; z-index:1001; }
.burger input { display:none; }
.burger span {
    display:block; position:absolute; height:4px; width:100%;
    background:white; border-radius:9px; left:0; transition:.25s ease-in-out;
}
.burger span:nth-of-type(1) { top:0; transform-origin:left center; }
.burger span:nth-of-type(2) { top:50%; transform:translateY(-50%); }
.burger span:nth-of-type(3) { bottom:0; transform-origin:left center; }
.burger input:checked ~ span:nth-of-type(1) { transform:rotate(45deg); left:5px; }
.burger input:checked ~ span:nth-of-type(2) { width:0; opacity:0; }
.burger input:checked ~ span:nth-of-type(3) { transform:rotate(-45deg); top:28px; left:5px; }

/* MOBILE MENU */
.mobile-menu {
    position:fixed; top:70px; left:0; right:0;
    background:rgba(4,21,45,0.98); backdrop-filter:blur(20px);
    transform:translateY(-100%); opacity:0; visibility:hidden;
    transition:all 0.4s cubic-bezier(0.68,-0.55,0.27,1.55);
    z-index:999; border-bottom:1px solid rgba(255,255,255,0.1);
    max-height:calc(100vh - 70px); overflow-y:auto;
}
.mobile-menu.active { transform:translateY(0); opacity:1; visibility:visible; }
.mobile-menu nav { display:flex; flex-direction:column; padding:20px; }
.mobile-menu a {
    color:var(--text-primary); text-decoration:none; font-size:18px;
    padding:15px 20px; border-bottom:1px solid rgba(255,255,255,0.05); transition:all 0.3s;
}
.mobile-menu a:hover { color:var(--accent-bright); padding-left:30px; }

/* ================================================================
   HERO
   ================================================================ */
.dmca-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px 80px;
    gap: 80px;
    overflow: hidden;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}
.hero-glow-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(229,9,20,0.18) 0%, transparent 70%);
    top: -100px; left: -100px;
    animation-delay: 0s;
}
.hero-glow-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(229,9,20,0.20) 0%, transparent 70%);
    bottom: -80px; right: -80px;
    animation-delay: -2s;
}
.hero-glow-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(255,140,0,0.12) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    animation-delay: -4s;
}
@keyframes glowPulse {
    0%,100% { opacity:0.7; transform:scale(1); }
    50%      { opacity:1;   transform:scale(1.12); }
}

.hero-content {
    position: relative; z-index: 2;
    max-width: 600px;
    animation: heroFadeIn 0.9s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes heroFadeIn {
    from { opacity:0; transform:translateY(30px); }
    to   { opacity:1; transform:translateY(0); }
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 16px;
    background: rgba(229,9,20,0.15);
    border: 1px solid rgba(229,9,20,0.35);
    border-radius: 20px;
    font-size: 12px; font-weight: 700;
    color: #ff6b6b; letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: heroFadeIn 0.7s 0.1s both;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(80px, 12vw, 140px);
    letter-spacing: 8px;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 80px rgba(229,9,20,0.3);
    animation: heroFadeIn 0.7s 0.2s both;
}
.hero-title .cursor {
    display: inline-block;
    width: 4px; height: 0.85em;
    background: var(--accent-bright);
    margin-left: 4px;
    vertical-align: middle;
    animation: blink 0.8s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-subtitle {
    font-size: 14px; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-bright); opacity: 0.8;
    margin-bottom: 20px;
    animation: heroFadeIn 0.7s 0.3s both;
}

.hero-desc {
    font-size: 17px; line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 36px;
    animation: heroFadeIn 0.7s 0.4s both;
}

.hero-stats {
    display: flex; align-items: center; gap: 0;
    margin-bottom: 40px;
    padding: 20px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    animation: heroFadeIn 0.7s 0.5s both;
}
.hero-stat {
    flex: 1; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.hero-stat-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 42px; color: var(--text-primary);
    line-height: 1;
}
.hero-stat-unit { font-size: 18px; color: var(--accent-bright); font-weight: 700; margin-left: 2px; }
.hero-stat-lbl { font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; }
.hero-stat-divider {
    width: 1px; height: 50px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0; margin: 0 8px;
}

.hero-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    background: var(--accent-bright);
    color: white; text-decoration: none;
    border-radius: 12px; font-size: 15px; font-weight: 700;
    transition: all 0.25s; letter-spacing: 0.3px;
    animation: heroFadeIn 0.7s 0.6s both;
}
.hero-cta:hover { background: #ff1f2d; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(229,9,20,0.4); }

/* Shield visuel hero */
.hero-visual {
    position: relative; z-index: 2;
    width: 320px; height: 320px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    animation: heroFadeIn 0.9s 0.3s both;
}
.shield-wrap {
    position: relative; width: 200px; height: 200px;
    display: flex; align-items: center; justify-content: center;
}
.shield-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(229,9,20,0.2);
    animation: shieldSpin 16s linear infinite;
}
.shield-ring-1 { width:200px; height:200px; animation-duration:14s; }
.shield-ring-2 { width:260px; height:260px; animation-duration:20s; animation-direction:reverse; border-color:rgba(229,9,20,0.15); }
.shield-ring-3 { width:310px; height:310px; animation-duration:28s; border-color:rgba(255,140,0,0.1); }
@keyframes shieldSpin { from{transform:rotate(0)} to{transform:rotate(360deg)} }

.shield-core {
    width: 120px; height: 120px; border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, rgba(229,9,20,0.4), rgba(4,21,45,0.9));
    border: 1px solid rgba(229,9,20,0.4);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-bright);
    box-shadow: 0 0 40px rgba(229,9,20,0.3), inset 0 0 30px rgba(229,9,20,0.1);
    animation: shieldPulse 3s ease-in-out infinite;
}
@keyframes shieldPulse {
    0%,100% { box-shadow:0 0 40px rgba(229,9,20,0.3); }
    50%      { box-shadow:0 0 70px rgba(229,9,20,0.5), 0 0 120px rgba(229,9,20,0.2); }
}

/* ================================================================
   BANDE ALERTE
   ================================================================ */
.info-banner {
    position: relative; z-index: 1;
    margin: 0 60px 0;
    background: rgba(229,9,20,0.08);
    border: 1px solid rgba(229,9,20,0.25);
    border-radius: 14px; padding: 16px 24px;
    overflow: hidden;
}
.info-banner::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--accent-bright);
}
.info-banner-inner {
    display: flex; align-items: flex-start; gap: 16px;
}
.info-banner-icon {
    flex-shrink: 0; color: var(--accent-bright);
    padding-top: 2px;
}
.info-banner p {
    font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.82);
}
.info-banner strong { color: white; }

/* ================================================================
   SECTIONS COMMUNES
   ================================================================ */
.dmca-section-wrap {
    position: relative; z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 60px;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(229,9,20,0.12);
    border: 1px solid rgba(229,9,20,0.25);
    border-radius: 20px;
    font-size: 11px; font-weight: 700;
    color: #ff6b6b; letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(36px, 5vw, 52px);
    letter-spacing: 2px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #fff 0%, rgba(229,9,20,0.85) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-sub {
    font-size: 16px; color: var(--text-secondary);
    max-width: 520px; margin: 0 auto; line-height: 1.6;
}

/* ================================================================
   TIMELINE PROCESSUS
   ================================================================ */
.process-timeline {
    display: flex; align-items: flex-start;
    gap: 0; flex-wrap: wrap; justify-content: center;
}
.process-step {
    flex: 1; min-width: 180px; max-width: 230px;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    animation: revealUp 0.6s calc(var(--i) * 0.15s) both;
}
.process-connector {
    flex-shrink: 0; margin-top: 36px;
    width: 40px; height: 2px;
    background: linear-gradient(90deg, rgba(229,9,20,0.5), rgba(229,9,20,0.2));
    position: relative;
    animation: revealUp 0.6s calc(var(--i) * 0.15s) both;
}
.process-connector::after {
    content:'';
    position:absolute; right:-4px; top:-4px;
    border:5px solid transparent;
    border-left-color: rgba(229,9,20,0.5);
}
.step-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 13px; letter-spacing: 2px;
    color: var(--accent-bright); opacity: 0.6;
}
.step-card {
    background: rgba(25,25,25,0.8);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px; padding: 24px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229,9,20,0.3);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.step-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(229,9,20,0.12);
    border: 1px solid rgba(229,9,20,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-bright); margin: 0 auto 14px;
    transition: transform 0.2s;
}
.step-card:hover .step-icon { transform: scale(1.1) rotate(-5deg); }
.step-icon-blue { background:rgba(255,107,129,0.12); border-color:rgba(255,107,129,0.2); color:#ff6b81; }
.step-icon-green { background:rgba(255,215,0,0.12); border-color:rgba(255,215,0,0.2); color:#ffd700; }
.step-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: white; }
.step-card p { font-size: 12px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.step-tag {
    display: inline-block; padding: 3px 10px;
    background: rgba(229,9,20,0.12); border:1px solid rgba(229,9,20,0.2);
    border-radius: 20px; font-size: 10px; font-weight: 700;
    color: #ff6b81; letter-spacing: 0.5px; text-transform: uppercase;
}
.step-tag-blue  { background:rgba(255,107,129,0.12); border-color:rgba(255,107,129,0.2); color:#ff6b81; }
.step-tag-green { background:rgba(255,215,0,0.12);  border-color:rgba(255,215,0,0.2);  color:#ffd700; }

/* ================================================================
   CARTES INFO
   ================================================================ */
.dmca-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.dmca-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 32px 28px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    animation: revealUp 0.6s calc(var(--i) * 0.15s) both;
}
.dmca-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229,9,20,0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.dmca-card-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent-bright), rgba(229,9,20,0.3));
}
.dmca-card-accent-blue  { background: linear-gradient(90deg, var(--accent-blue), rgba(255,107,129,0.3)); }
.dmca-card-accent-green { background: linear-gradient(90deg, var(--accent-green), rgba(255,215,0,0.3)); }
.dmca-card-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.dmca-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; color: white; }
.dmca-card p { font-size: 14px; line-height: 1.75; color: var(--text-secondary); margin-bottom: 10px; }
.dmca-card p:last-child { margin-bottom: 0; }

/* ================================================================
   REQUIREMENTS
   ================================================================ */
.dmca-requirements {
    display: flex; flex-direction: column; gap: 16px;
}
.req-item {
    display: flex; gap: 20px; align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px; padding: 22px 24px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.req-item:hover {
    border-color: rgba(229,9,20,0.25);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.req-num {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--accent-bright);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', cursive; font-size: 20px;
    color: white; flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(229,9,20,0.35);
}
.req-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: white; }
.req-content p  { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px; overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(229,9,20,0.3); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px;
    background: none; border: none; cursor: pointer;
    color: white; font-size: 15px; font-weight: 600;
    font-family: 'Work Sans', sans-serif; text-align: left;
    gap: 16px; transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-item.open .faq-question { background: rgba(229,9,20,0.08); }
.faq-chevron {
    flex-shrink: 0; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent-bright); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
    padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 14px; color: var(--text-secondary); line-height: 1.75; }
.faq-link { color: var(--accent-bright); text-decoration: none; }
.faq-link:hover { color: #ff6b6b; }

/* ================================================================
   CONTACT CTA
   ================================================================ */
.dmca-contact-cta {
    position: relative;
    background: linear-gradient(135deg, rgba(229,9,20,0.12) 0%, rgba(229,9,20,0.06) 100%);
    border: 1px solid rgba(229,9,20,0.22);
    border-radius: 24px; overflow: hidden; padding: 48px 40px;
}
.cta-glow {
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(229,9,20,0.2), transparent 70%);
    pointer-events: none;
}
.cta-inner {
    position: relative; z-index: 1;
    display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.cta-icon-wrap {
    width: 76px; height: 76px; border-radius: 20px;
    background: rgba(229,9,20,0.2);
    border: 1px solid rgba(229,9,20,0.35);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-bright); flex-shrink: 0;
    animation: shieldPulse 3s ease-in-out infinite;
}
.cta-text { flex: 1; min-width: 220px; }
.cta-text h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.cta-text p  { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.cta-action  { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

.cta-email-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 24px;
    background: var(--accent-bright);
    color: white; text-decoration: none;
    border-radius: 12px; font-size: 15px; font-weight: 700;
    transition: all 0.25s; white-space: nowrap;
}
.cta-email-btn:hover { background: #ff1f2d; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(229,9,20,0.4); }

.cta-back-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-secondary); text-decoration: none;
    border-radius: 12px; font-size: 14px; font-weight: 600;
    transition: all 0.25s; white-space: nowrap;
}
.cta-back-btn:hover { background: rgba(255,255,255,0.1); color: white; }

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */
@keyframes revealUp {
    from { opacity:0; transform:translateY(24px); }
    to   { opacity:1; transform:translateY(0); }
}
.reveal-up {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
                transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal-up.visible { opacity:1; transform:translateY(0); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    position: relative; z-index: 1;
    background: linear-gradient(to bottom, transparent 0%, rgba(10,10,10,1) 20%);
    padding: 30px 30px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 40px;
}
.footer-main {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr;
    gap: 80px; margin-bottom: 20px; align-items: start;
}
.footer-left { padding-right: 40px; }
.footer-right { display:flex; flex-direction:column; gap:25px; }
.footer-title { font-size:20px; font-weight:700; color:var(--text-primary); margin-bottom:20px; }
.footer-text { color:var(--text-secondary); font-size:14px; line-height:1.8; }
.footer-icons-grid {
    display: grid; grid-template-columns: repeat(5,1fr);
    gap: 20px; justify-items:center; align-items:center;
}
.social-icon {
    display:flex; align-items:center; justify-content:center;
    width:50px; height:50px; border-radius:50%;
    background:transparent; transition:all 0.25s; text-decoration:none;
}
.social-icon:hover { transform:scale(1.1); }
.social-icon img { width:30px; height:30px; object-fit:contain; transition:filter 0.2s; }
.social-icon:hover img { filter:brightness(0) invert(1); }
.social-icon.github:hover   { background:#24292e; }
.social-icon.discord:hover  { background:#5865F2; }
.social-icon.telegram:hover { background:#0088cc; }
.social-icon.link:hover     { background:#666; }
.social-icon.trustpilot:hover { background:#00B67A; }
.social-icon.coffee:hover   { background:#FFDD00; }
.social-icon.beacons:hover  { background:#8B5CF6; }
.social-icon.dmca:hover     { background:#e50914; }
.social-icon.extension:hover{ background:#FF7139; }
.social-icon.info:hover     { background:#0078D7; }
.footer-copyright { color:var(--text-secondary); font-size:13px; }
.footer-author { color:var(--accent-bright); text-decoration:none; font-weight:600; }
.footer-author:hover { color:#ff1f2d; }

/* ================================================================
   SCROLLBAR
   ================================================================ */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:transparent; }
::-webkit-scrollbar-thumb { background:rgba(255,255,255,0.2); border-radius:10px; }
::-webkit-scrollbar-thumb:hover { background:rgba(255,255,255,0.35); }
* { scrollbar-width:thin; scrollbar-color:rgba(255,255,255,0.2) transparent; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1800px) {
    .navbar { padding:15px 20px; gap:15px; }
    .logo { font-size:28px; flex-shrink:0; }
    .nav-links { display:none !important; }
    .burger { display:block !important; }
}
@media (max-width: 1024px) {
    .dmca-hero { flex-direction:column; padding:120px 30px 60px; gap:40px; text-align:center; }
    .hero-content { max-width:100%; }
    .hero-stats { flex-direction:column; gap:16px; padding:20px; }
    .hero-stat-divider { width:60px; height:1px; }
    .dmca-cards-grid { grid-template-columns:1fr; }
    .process-timeline { flex-direction:column; align-items:center; gap:20px; }
    .process-connector { width:2px; height:30px; margin:0 auto; }
    .process-connector::after { border:5px solid transparent; border-top-color:rgba(229,9,20,0.5); right:-4px; top:auto; bottom:-8px; }
    .footer-main { grid-template-columns:1fr; gap:50px; }
    .footer-left { padding-right:0; }
    .cta-inner { flex-direction:column; text-align:center; }
    .cta-action { flex-direction:row; flex-wrap:wrap; justify-content:center; }
    .info-banner { margin:0 20px; }
    .dmca-section-wrap { padding:60px 30px; }
}
@media (max-width: 640px) {
    .hero-title { font-size:72px; }
    .dmca-hero { padding:100px 20px 50px; }
    .dmca-section-wrap { padding:50px 20px; }
    .dmca-cards-grid { gap:16px; }
    .info-banner { margin:0 12px; }
    .dmca-contact-cta { padding:30px 20px; }
    .footer { padding:30px 15px 15px; }
}