/* ===========================
   NOUSCRAFT - REDESIGNED STYLES
   Inspired by mattdinniman.com
   =========================== */

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

html {
    scroll-behavior: smooth;
}

:root {
    --base: #131313;
    --base-light: #1a1a1a;
    --base-lighter: #222222;
    --accent-gold: #ffc10a;
    --accent-gold-dim: rgba(255, 193, 10, 0.15);
    --accent-red: #b11225;
    --accent-red-bright: #e81514;
    --text-color: #ffffff;
    --text-muted: #b0b0b0;
    --text-dim: rgba(255, 255, 255, 0.5);
    --corner-clip: 11px;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-mono: 'Inconsolata', monospace;
    --link-color: #39ff14;
    --link-hover: #7fff5e;
}

/* Global link styles for content text */
a {
    color: var(--link-color);
    transition: color 0.15s ease;
}

a:hover {
    color: var(--link-hover);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--base);
    -webkit-font-smoothing: antialiased;
}

/* Grunge texture overlay on body */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
header {
    background-color: rgba(19, 19, 19, 0.95);
    backdrop-filter: blur(10px);
    padding: 0 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px;
    border-bottom: 2px solid var(--accent-gold);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
    display: block;
}

nav > a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

/* Override global link color for nav */
.nav-links li a,
.nav-links li .discord-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-color);
    text-decoration: none;
    padding: 1.5rem 1rem;
    display: block;
    transition: color 0.2s ease, background-color 0.2s ease;
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--accent-gold);
    background-color: rgba(255, 193, 10, 0.08);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.2s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 80%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 30px;
    height: 30px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--accent-gold);
    margin: 5px 0;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.hamburger span:nth-child(1) { top: 2px; }
.hamburger span:nth-child(2) { top: 12px; }
.hamburger span:nth-child(3) { top: 22px; }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
}

/* ===========================
   MAIN CONTENT
   =========================== */
main {
    margin-top: 70px;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    background: var(--base);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
}

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

.hero h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tagline {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Audiobook Player */
.audiobook-player {
    margin: 2.5rem auto;
    max-width: 300px;
    background: var(--base-light);
    padding: 1.5rem;
    border: 1px solid rgba(255, 193, 10, 0.3);
    position: relative;
}

.audiobook-player::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--accent-gold), transparent 40%, transparent 60%, var(--accent-red));
    z-index: -1;
    opacity: 0.5;
}

.audiobook-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.audio-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.audiobook-cover {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.audio-container:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    clip-path: polygon(var(--corner-clip) 0, 100% 0, 100% calc(100% - var(--corner-clip)), calc(100% - var(--corner-clip)) 100%, 0 100%, 0 var(--corner-clip));
}

.audio-container:hover .play-button {
    transform: scale(1.1);
    background: rgba(177, 18, 37, 0.8);
}

.play-icon, .pause-icon {
    width: 35px;
    height: 35px;
    color: var(--accent-gold);
}

.audio-controls {
    margin-top: 1rem;
}

.audio-progress {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}

.audio-progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    cursor: pointer;
}

.audio-progress::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    cursor: pointer;
    border: none;
}

.audio-time {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ===========================
   BUTTONS - CLIPPED CORNERS
   =========================== */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-red);
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.2s ease;
    clip-path: polygon(var(--corner-clip) 0, 100% 0, 100% calc(100% - var(--corner-clip)), calc(100% - var(--corner-clip)) 100%, 0 100%, 0 var(--corner-clip));
}

.cta-button:hover {
    background-color: var(--accent-red-bright);
    transform: scale(0.97);
}

/* ===========================
   SERIES CAROUSEL
   =========================== */
.series-carousel-section {
    padding: 5rem 5%;
    background: var(--base-light);
    position: relative;
    overflow: hidden;
}

/* Dark donut texture background */
.series-carousel-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.12;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='18' fill='none' stroke='%23ffc10a' stroke-width='4'/%3E%3Ccircle cx='40' cy='40' r='6' fill='%23131313'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='14' fill='none' stroke='%23b11225' stroke-width='3'/%3E%3Ccircle cx='40' cy='40' r='5' fill='%23131313'/%3E%3C/svg%3E");
    background-size: 80px 80px, 60px 60px;
    background-position: 0 0, 40px 35px;
}

/* Top gold line + subtle vignette */
.series-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, var(--accent-gold), transparent) top / 100% 4px no-repeat,
        radial-gradient(ellipse at 30% 50%, rgba(255, 193, 10, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 40%, rgba(177, 18, 37, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.series-carousel {
    position: relative;
    z-index: 1;
}

.series-showcase {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.series-details {
    text-align: center;
    max-width: 700px;
    background: rgba(19, 19, 19, 0.92);
    padding: 2rem 2.5rem;
    border: 1px solid rgba(255, 193, 10, 0.15);
}

.series-details h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.series-details p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.series-covers {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2.5rem);
    width: 100%;
}

.series-cover-link {
    display: block;
    flex: 1;
    max-width: 280px;
    transition: transform 0.3s ease;
}

.series-cover-link:hover {
    transform: translateY(-8px);
}

.series-cover-link img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease;
}

.series-cover-link:hover img {
    box-shadow: 0 15px 40px rgba(255, 193, 10, 0.2), 0 8px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
    .series-carousel-section {
        padding: 3rem 5%;
    }

    .series-showcase {
        gap: 2rem;
    }

    .series-cover-link {
        max-width: 220px;
    }
}

@media (max-width: 600px) {
    .series-carousel-section {
        padding: 2rem 3%;
    }

    .series-details {
        background: var(--base);
        padding: 1.5rem 1.25rem;
    }

    .series-details h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .series-details p {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .series-covers {
        gap: 0.4rem;
    }
}

/* ===========================
   BOOKS SECTION
   =========================== */
.books-section {
    padding: 6rem 5%;
    background-color: var(--base-light);
    position: relative;
}

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

.books-section h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 4rem;
    color: var(--accent-gold);
}

.books-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.book-card {
    background-color: var(--base);
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.book-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 193, 10, 0.2);
}

.book-cover-link {
    display: flex;
    flex-shrink: 0;
    width: 240px;
    min-width: 240px;
}

.book-cover {
    width: 100%;
    height: 100%;
    min-height: 360px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.book-cover:hover {
    transform: scale(1.03);
}

.book-1 { background-image: url('images/book1-no-text.jpg'); }
.book-2 { background-image: url('images/book2-no-text.jpg'); }
.book-3 { background-image: url('images/book3-no-text.jpg'); }

.book-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem 2.5rem;
}

.book-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.book-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
    text-align: left;
    color: var(--text-muted);
}

.book-description p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.book-description p:last-child {
    margin-bottom: 0;
}

.book-tagline {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem !important;
    line-height: 1.4;
}

.book-quote {
    font-family: var(--font-mono);
    font-style: italic;
    color: var(--accent-gold);
    border-left: 3px solid var(--accent-red);
    padding-left: 1rem;
    margin: 1rem 0 !important;
}

.book-series-note {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 0.5rem !important;
    font-style: normal;
}

.book-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.book-cta {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    min-width: 120px;
    transition: all 0.2s ease;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.audiobook-btn {
    background-color: var(--accent-red);
}

.audiobook-btn:hover {
    background-color: var(--accent-red-bright);
    transform: scale(0.97);
}

.ebook-btn {
    background-color: var(--base-lighter);
    border: 1px solid var(--accent-gold);
}

.ebook-btn:hover {
    background-color: var(--accent-gold);
    color: var(--base);
}

.preorder-btn {
    background: var(--accent-gold);
    color: var(--base);
}

.preorder-btn:hover {
    background: var(--text-color);
    color: var(--base);
}

.preorder-btn::before { display: none; }

/* Tropes, Comps, Genre Tags */
.book-tropes,
.book-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.75rem;
}

.trope-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.2rem 0.5rem;
}

.genre-tag {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    background: rgba(255, 193, 10, 0.06);
    border: 1px solid rgba(255, 193, 10, 0.15);
    padding: 0.2rem 0.5rem;
}

.book-comps {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-dim);
    font-style: italic;
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
}

/* Kindle Unlimited Badge */
.kindle-unlimited-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 51, 102, 0.6);
    border: 1px solid rgba(0, 100, 200, 0.3);
    color: #fff;
    padding: 0.4rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

/* ===========================
   PACKAGES SECTION
   =========================== */
.packages-section {
    padding: 6rem 5%;
    background: var(--base);
    position: relative;
}

.packages-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.packages-header {
    text-align: center;
    margin-bottom: 4rem;
}

.packages-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.packages-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

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

.package-card {
    background: var(--base-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    clip-path: polygon(var(--corner-clip) 0, 100% 0, 100% calc(100% - var(--corner-clip)), calc(100% - var(--corner-clip)) 100%, 0 100%, 0 var(--corner-clip));
}

.package-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(255, 193, 10, 0.15);
}

.package-card.popular {
    border-color: var(--accent-gold);
    transform: scale(1.03);
}

.package-card.popular:hover {
    transform: scale(1.03) translateY(-5px);
}

.package-card.ultimate {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(255, 193, 10, 0.08), var(--base-light));
}

.package-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: white;
    padding: 0.4rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ultimate-badge {
    background: var(--accent-gold);
    color: var(--base);
}

.package-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.package-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.package-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.package-contents {
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.content-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.content-item.bonus {
    color: var(--accent-gold);
    font-weight: 500;
}

.check {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 20px;
}

.package-pricing {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--accent-gold-dim);
    border: 1px solid rgba(255, 193, 10, 0.2);
}

.original-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.bundle-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.savings {
    color: var(--accent-red-bright);
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(var(--corner-clip) 0, 100% 0, 100% calc(100% - var(--corner-clip)), calc(100% - var(--corner-clip)) 100%, 0 100%, 0 var(--corner-clip));
}

.ebook-bundle {
    background: var(--accent-gold);
    color: var(--base);
}

.ebook-bundle:hover {
    background: var(--text-color);
    transform: scale(0.97);
}

.audiobook-bundle {
    background: var(--accent-red);
    color: var(--text-color);
}

.audiobook-bundle:hover {
    background: var(--accent-red-bright);
    transform: scale(0.97);
}

.ultimate-bundle {
    background: var(--accent-gold);
    color: var(--base);
}

.ultimate-bundle::before { display: none; }

.ultimate-bundle:hover {
    background: var(--text-color);
    transform: scale(0.97);
}

.packages-footer {
    text-align: center;
    margin-top: 3rem;
}

.guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 193, 10, 0.08);
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 193, 10, 0.2);
    color: var(--text-muted);
    font-weight: 500;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

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

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    padding: 6rem 5%;
    background: var(--base-light);
    position: relative;
    overflow: hidden;
}

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

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.deco-line {
    width: 80px;
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.5;
}

.deco-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
    animation: none;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-muted);
    text-align: center;
}

.about-intro strong {
    color: var(--accent-gold);
    font-weight: 700;
}

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

.feature-card {
    background: var(--base);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 5px 20px rgba(255, 193, 10, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-quote {
    background: var(--base);
    padding: 2rem;
    border-left: 3px solid var(--accent-gold);
    margin-top: 2rem;
}

.about-quote blockquote {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

.about-visual {
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.element-1 { top: 10%; left: 20%; animation-delay: 0s; }
.element-2 { top: 60%; left: 10%; animation-delay: 1.5s; }
.element-3 { top: 30%; left: 70%; animation-delay: 3s; }
.element-4 { top: 80%; left: 60%; animation-delay: 4.5s; }
.element-5 { top: 50%; left: 40%; animation-delay: 6s; }

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

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials-section {
    padding: 6rem 5%;
    background: var(--base);
    position: relative;
}

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

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-family: var(--font-mono);
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 1rem;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.testimonials-controls.sticky {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(19, 19, 19, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 193, 10, 0.2);
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    padding: 0.75rem 1rem;
    margin-bottom: 0;
    transition: none;
}

.testimonial-filter {
    background: var(--base-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.testimonial-filter:hover {
    background: rgba(255, 193, 10, 0.1);
    border-color: var(--accent-gold);
    color: var(--text-color);
}

.testimonial-filter.active {
    background: var(--accent-gold);
    color: var(--base);
    border-color: var(--accent-gold);
    transform: none;
}

.filters-placeholder {
    visibility: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--base-light);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.3s ease forwards;
}

.testimonial-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 5px 20px rgba(255, 193, 10, 0.1);
}

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

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--accent-gold);
    font-size: 1rem;
}

.star.empty {
    color: rgba(255, 193, 10, 0.2);
}

.testimonial-badges {
    display: flex;
    gap: 0.5rem;
}

.testimonial-badge {
    background: var(--accent-red);
    color: white;
    padding: 0.2rem 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-badge.verified {
    background: rgba(255, 193, 10, 0.2);
    color: var(--accent-gold);
}

.testimonial-text {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.author-avatar {
    width: 38px;
    height: 38px;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--base);
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1rem;
    clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.author-info {
    flex: 1;
}

.author-name {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.author-source {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* Featured Amazon Reviews */
.amazon-featured-reviews {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.amazon-review-featured {
    background: var(--base-light);
    border: 1px solid rgba(255, 153, 0, 0.15);
    border-left: 3px solid #FF9900;
    padding: 1.5rem 2rem;
    transition: border-color 0.2s ease;
}

.amazon-review-featured:hover {
    border-color: rgba(255, 153, 0, 0.3);
}

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

.amazon-stars {
    color: #FF9900;
    font-size: 1rem;
    letter-spacing: 2px;
}

.amazon-verified {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: #FF9900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amazon-review-featured h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amazon-review-featured p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.amazon-review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.reviewer-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-date {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .amazon-review-featured {
        padding: 1.25rem 1.25rem;
    }

    .amazon-review-featured h4 {
        font-size: 0.95rem;
    }

    .amazon-review-featured p {
        font-size: 0.85rem;
    }
}

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

.load-more-btn {
    background: var(--accent-gold);
    color: var(--base);
    border: none;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    margin-bottom: 1rem;
}

.load-more-btn:hover {
    background: var(--text-color);
    transform: scale(0.97);
}

.load-more-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.testimonials-count {
    color: var(--text-dim);
    font-size: 0.85rem;
    font-family: var(--font-mono);
}

.tag-badge {
    background: var(--accent-gold-dim);
    border: 1px solid rgba(255, 193, 10, 0.3);
    color: var(--accent-gold);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===========================
   DISCORD
   =========================== */
.discord-item {
    display: flex;
    align-items: center;
}

.discord-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.75rem;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.2);
    transition: all 0.2s ease;
}

.discord-link:hover {
    background: rgba(88, 101, 242, 0.2);
    color: #5865F2 !important;
    border-color: rgba(88, 101, 242, 0.4);
}

.discord-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.discord-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: none;
}

.discord-count {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    background: rgba(88, 101, 242, 0.2);
    color: #B8BFE8;
    white-space: nowrap;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 1024px) {
    .discord-text {
        display: inline;
    }
}

/* ===========================
   BACK TO TOP
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--accent-gold);
    color: var(--base);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 999;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.back-to-top:hover {
    background: var(--text-color);
    transform: scale(0.97);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background-color: var(--base);
    text-align: center;
    padding: 2rem;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

/* ===========================
   MOBILE NAVIGATION
   =========================== */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--base);
        flex-direction: column;
        padding: 0;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        border-left: 1px solid var(--accent-gold);
        overflow-y: auto;
        z-index: 1001;
        display: flex;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        list-style: none;
    }

    .nav-links li a,
    .nav-links li .discord-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li a::after {
        display: none;
    }

    .nav-links li a:hover {
        background: rgba(255, 193, 10, 0.08);
    }

    /* Discord mobile styles */
    .discord-item {
        width: 100%;
    }

    .discord-link {
        margin: 1rem 2rem;
        justify-content: center;
        background: rgba(88, 101, 242, 0.15);
    }

    .discord-text {
        display: inline;
    }
}

/* ===========================
   RESPONSIVE - 768px
   =========================== */
@media (max-width: 768px) {
    /* Hero */
    .hero {
        min-height: 70vh;
        padding: 3rem 1.5rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-content .cta-button {
        display: block;
        margin: 0.4rem auto;
        width: 80%;
        text-align: center;
    }

    /* Audiobook player */
    .audiobook-player {
        max-width: 250px;
    }

    /* Books Section */
    .books-section {
        padding: 3rem 4%;
    }

    .books-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .books-container {
        gap: 2rem;
    }

    .book-card {
        flex-direction: column;
        align-items: stretch;
    }

    .book-cover-link {
        flex-shrink: unset;
        width: 100%;
        min-width: unset;
    }

    .book-cover {
        min-width: unset;
        width: 100%;
        height: 300px;
        min-height: 300px;
    }

    .book-content {
        padding: 1.5rem;
    }

    .book-card h3 {
        font-size: 1.3rem;
    }

    .book-tagline {
        font-size: 1rem;
    }

    .book-description {
        text-align: left;
    }

    .book-buttons {
        justify-content: stretch;
    }

    .book-cta {
        flex: 1;
        text-align: center;
    }

    /* About */
    .about-section {
        padding: 3rem 4%;
    }

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

    .about-header h2 {
        font-size: 2rem;
    }

    .about-intro {
        font-size: 1rem;
    }

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

    .about-visual {
        height: 150px;
    }

    .element {
        font-size: 1.5rem;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 3rem 4%;
    }

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

    .testimonials-header h2 {
        font-size: 2rem;
    }

    .testimonials-controls {
        gap: 0.4rem;
        padding: 0.5rem;
    }

    .testimonial-filter {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .testimonials-controls.sticky {
        top: 70px;
        padding: 0.5rem;
    }

    /* Back to top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    /* Packages */
    .packages-section {
        padding: 3rem 4%;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .package-card.popular {
        transform: none;
    }

    .package-card.popular:hover {
        transform: translateY(-5px);
    }

    .packages-header h2 {
        font-size: 2rem;
    }

    .bundle-price {
        font-size: 2rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    /* Footer */
    footer {
        padding: 1.5rem 1rem;
    }
}

/* ===========================
   RESPONSIVE - 480px
   =========================== */
@media (max-width: 480px) {
    header {
        padding: 0 3%;
        height: 60px;
    }

    main {
        margin-top: 60px;
    }

    .logo {
        height: 32px;
    }

    .nav-links {
        top: 60px;
        height: calc(100vh - 60px);
        width: 100%;
    }

    .hero {
        min-height: 60vh;
        padding: 2rem 1rem;
    }

    .hero h2 {
        font-size: 1.7rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .hero-content .cta-button {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .audiobook-player {
        max-width: 220px;
        padding: 1rem;
    }

    .books-section {
        padding: 2rem 3%;
    }

    .books-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .book-cover {
        height: 250px;
        min-height: 250px;
    }

    .book-content {
        padding: 1.25rem;
    }

    .book-card h3 {
        font-size: 1.15rem;
    }

    .book-tagline {
        font-size: 0.9rem;
    }

    .book-description p {
        font-size: 0.9rem;
    }

    .amazon-buttons {
        flex-direction: column;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .testimonials-header h2 {
        font-size: 1.6rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .about-header h2,
    .packages-header h2 {
        font-size: 1.6rem;
    }
}

/* ===========================
   NOTIFICATION MODAL
   =========================== */
.notification-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--base-light);
    margin: 5% auto;
    padding: 2.5rem;
    border: 1px solid var(--accent-gold);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
    clip-path: polygon(var(--corner-clip) 0, 100% 0, 100% calc(100% - var(--corner-clip)), calc(100% - var(--corner-clip)) 100%, 0 100%, 0 var(--corner-clip));
}

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

.close-modal {
    color: var(--text-muted);
    float: right;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
    position: absolute;
    right: 1.5rem;
    top: 1rem;
}

.close-modal:hover {
    color: var(--accent-gold);
}

.modal-content h2 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-family: var(--font-mono);
}

.notification-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input[type="email"],
.form-group select {
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--base);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input[type="email"]:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(255, 193, 10, 0.15);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.submit-notification {
    background: var(--accent-gold);
    color: var(--base);
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
    clip-path: polygon(var(--corner-clip) 0, 100% 0, 100% calc(100% - var(--corner-clip)), calc(100% - var(--corner-clip)) 100%, 0 100%, 0 var(--corner-clip));
}

.submit-notification:hover {
    background: var(--text-color);
    transform: scale(0.97);
}

.privacy-note {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-top: 1rem;
    font-family: var(--font-mono);
}

.notification-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--base);
    margin: 0 auto 1.5rem;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    animation: successPulse 0.5s ease-out;
}

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

.notification-success h3 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.notification-success p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ===========================
   PRIVACY POLICY
   =========================== */
.privacy-policy {
    padding-top: 90px;
    min-height: 100vh;
}

.privacy-policy .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.privacy-policy h1 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-align: center;
}

.privacy-policy .last-updated {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 3rem;
    font-family: var(--font-mono);
    font-style: italic;
}

.privacy-policy section {
    margin-bottom: 2.5rem;
}

.privacy-policy h2 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 193, 10, 0.2);
    padding-bottom: 0.5rem;
}

.privacy-policy h3 {
    color: var(--text-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.privacy-policy p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-policy ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-policy li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.privacy-policy strong {
    color: var(--text-color);
}

.privacy-policy a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

.privacy-policy a:hover {
    color: var(--accent-red-bright);
}

@media (max-width: 768px) {
    .privacy-policy h1 {
        font-size: 1.8rem;
    }

    .privacy-policy h2 {
        font-size: 1.3rem;
    }

    .privacy-policy .container {
        padding: 1.5rem 4%;
    }
}
