/* ===== CSS Variables ===== */
:root {
    /* Theme colors - dynamically updated by theme switcher */
    --primary: #1abc9c;
    --primary-dark: #16a085;
    --primary-light: #48c9b0;
    --hue: 170; /* Base hue for canvas - Aquamarine/Turquoise */
    --crystal-saturation: 70;
    --crystal-backdrop: rgba(10, 14, 26, 0.92);
    --crystal-overlay-start: rgba(26, 188, 156, 0.16);
    --crystal-overlay-end: rgba(5, 8, 16, 0.85);

    /* Static colors */
    --secondary: #3498db;
    --secondary-dark: #2980b9;
    --accent: #48c9b0;
    --accent2: #5dddbc;
    --bg-dark: #0a0e1a;
    --bg-darker: #050810;
    --bg-card: #141b2d;
    --text-primary: #ffffff;
    --text-secondary: #b0b8d4;
    --text-muted: #6c7a9b;
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;
    --border: rgba(26, 188, 156, 0.15);
    --shadow: rgba(0, 0, 0, 0.5);
    --glow: rgba(26, 188, 156, 0.4);
}

/* Aquamarine Theme (1st - DEFAULT) - Turquoise Crystal */
[data-theme="aquamarine"] {
    --primary: #1abc9c;
    --primary-dark: #16a085;
    --primary-light: #48c9b0;
    --hue: 170;
    --crystal-saturation: 70;
    --crystal-backdrop: rgba(8, 22, 20, 0.92);
    --crystal-overlay-start: rgba(26, 188, 156, 0.2);
    --crystal-overlay-end: rgba(8, 22, 20, 0.78);
    --secondary: #3498db;
    --accent: #48c9b0;
    --accent2: #5dddbc;
    --border: rgba(26, 188, 156, 0.15);
    --glow: rgba(26, 188, 156, 0.4);
}

/* Onyx Theme (2nd) - Dark Gray Crystal */
[data-theme="onyx"] {
    --primary: #2f3339;
    --primary-dark: #1b1d21;
    --primary-light: #6f757e;
    --hue: 0;
    --crystal-saturation: 0;
    --crystal-backdrop: rgba(12, 13, 16, 0.94);
    --crystal-overlay-start: rgba(47, 51, 57, 0.22);
    --crystal-overlay-end: rgba(12, 13, 16, 0.8);
    --secondary: #3b3f46;
    --accent: #8a9099;
    --accent2: #c7cbd2;
    --border: rgba(150, 154, 160, 0.25);
    --glow: rgba(120, 125, 132, 0.45);
}

/* Pink Diamond Theme (3rd) - Hot Pink Crystal */
[data-theme="pink-diamond"] {
    --primary: #ff6b9d;
    --primary-dark: #e91e63;
    --primary-light: #ffb3d9;
    --hue: 330;
    --crystal-saturation: 75;
    --crystal-backdrop: rgba(32, 10, 20, 0.92);
    --crystal-overlay-start: rgba(255, 107, 157, 0.24);
    --crystal-overlay-end: rgba(32, 10, 20, 0.8);
    --secondary: #f06292;
    --accent: #ff9ec7;
    --accent2: #ffc1e3;
    --border: rgba(255, 107, 157, 0.15);
    --glow: rgba(255, 107, 157, 0.4);
}

/* Ruby Theme (4th) - Orange/Red Crystal */
[data-theme="ruby"] {
    --primary: #e67e22;
    --primary-dark: #d35400;
    --primary-light: #f39c12;
    --hue: 25;
    --crystal-saturation: 80;
    --crystal-backdrop: rgba(40, 16, 6, 0.92);
    --crystal-overlay-start: rgba(230, 126, 34, 0.22);
    --crystal-overlay-end: rgba(40, 16, 6, 0.82);
    --secondary: #e74c3c;
    --accent: #f39c12;
    --accent2: #f5b041;
    --border: rgba(230, 126, 34, 0.15);
    --glow: rgba(230, 126, 34, 0.4);
}

/* Emerald Theme (5th) - Green Crystal */
[data-theme="emerald"] {
    --primary: #2ecc71;
    --primary-dark: #27ae60;
    --primary-light: #58d68d;
    --hue: 145;
    --crystal-saturation: 70;
    --crystal-backdrop: rgba(8, 24, 14, 0.92);
    --crystal-overlay-start: rgba(46, 204, 113, 0.22);
    --crystal-overlay-end: rgba(8, 24, 14, 0.8);
    --secondary: #1abc9c;
    --accent: #58d68d;
    --accent2: #73d69c;
    --border: rgba(46, 204, 113, 0.15);
    --glow: rgba(46, 204, 113, 0.4);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Theme Switcher - Dropdown Style */
.theme-switcher {
    position: relative;
    margin-right: 1.5rem;
}

/* Theme Switcher - Visual Circles */
.theme-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-dropdown-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.theme-circles {
    display: flex;
    gap: 8px;
    padding: 4px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.theme-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.theme-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.theme-circle.active {
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.6), 0 4px 12px rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.theme-circle.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

/* Legacy dropdown styles (deprecated) */
.theme-dropdown {
    background: rgba(var(--secondary-rgb), 0.15);
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 8px;
    color: var(--text);
    padding: 8px 32px 8px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
}

.theme-dropdown:hover {
    border-color: var(--primary);
    background: rgba(var(--secondary-rgb), 0.25);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
}

.theme-dropdown:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5);
}

.theme-dropdown option {
    background: var(--bg);
    color: var(--text);
    padding: 8px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-icon {
    font-size: 1.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.2rem 0.5rem;
    border: 2px solid var(--primary);
    border-radius: 6px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.brand-name {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(circle at 50% 35%, var(--crystal-overlay-start) 0%, transparent 60%), var(--crystal-backdrop);
}

#crystalCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200vh; /* Extended to cover more of page */
    pointer-events: none; /* Allow clicks to pass through */
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--crystal-overlay-start) 0%, var(--crystal-overlay-end) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Smooth gradient transition from crystals to dark theme */
.hero-background::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, 
                transparent 0%, 
                rgba(10, 14, 26, 0.4) 40%,
                rgba(10, 14, 26, 0.8) 70%,
                rgba(10, 14, 26, 1) 100%);
    z-index: 2;
    pointer-events: none;
}

@keyframes backgroundShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--accent2), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* ===== Price Container (Hero) ===== */
.price-container {
    margin: 3rem 0;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.price-badge {
    position: relative;
    display: inline-block;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 2rem 3rem;
    box-shadow: 0 10px 40px var(--glow);
}

/* ===== Diagonal Ribbon (Minecraft Splash Style) ===== */
.limited-ribbon {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--danger), var(--warning));
    color: #fff;
    padding: 0.5rem 2.5rem;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(15deg);
    box-shadow: 0 4px 15px var(--glow);
    z-index: 10;
    animation: ribbonWiggle 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes ribbonWiggle {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    25% { transform: rotate(17deg) translateY(-2px); }
    50% { transform: rotate(13deg) translateY(2px); }
    75% { transform: rotate(16deg) translateY(-1px); }
}

.price-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.price-old {
    font-size: 2rem;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    text-decoration-color: var(--danger);
    opacity: 0.6;
}

.price-free {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--success);
    text-shadow: 0 0 20px var(--glow);
    animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { text-shadow: 0 0 20px var(--glow), 0 0 10px var(--glow); }
    50% { text-shadow: 0 0 30px var(--glow), 0 0 40px var(--glow), 0 0 50px var(--glow); }
}

.price-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== Hero CTA ===== */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--accent));
    color: var(--bg-dark);
    box-shadow: 0 8px 20px var(--glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* ===== Hero Stats ===== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px var(--glow);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Section Styles ===== */
.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 4rem;
}

/* ===== Features Section ===== */
.features {
    padding: 8rem 0;
    background: var(--bg-darker);
    position: relative;
    z-index: 3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px var(--shadow);
}

.feature-icon {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--accent2));
    color: var(--bg-dark);
    border-radius: 8px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 8rem 0;
    background: var(--bg-darker);
    position: relative;
    z-index: 3;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.active {
    border-color: var(--primary);
    box-shadow: 0 20px 60px var(--glow);
    transform: scale(1.05);
}

.pricing-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(135deg, var(--danger), var(--warning));
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 4px 10px var(--glow);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.price-amount-large {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
}

.price-period {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.7rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.pricing-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== Milestone Tracker ===== */
.milestone-tracker {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    text-align: center;
}

.milestone-tracker h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: var(--bg-darker);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--accent));
    border-radius: 15px;
    transition: width 0.5s ease;
    box-shadow: 0 0 20px var(--glow);
}

.milestone-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ===== Download Section ===== */
.download {
    padding: 8rem 0;
    background: var(--bg-darker);
    position: relative;
    z-index: 3;
}

.download-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    text-align: left;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--accent));
    color: var(--bg-dark);
    font-weight: 900;
    font-size: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 4px 15px var(--glow);
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.step-content p {
    color: var(--text-secondary);
}

.btn-download {
    display: inline-flex;
    flex-direction: column;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    margin: 2rem 0;
}

.download-size {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.7;
}

.download-requirements {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Disclaimer Section ===== */
/* ===== Disclaimer Section ===== */
.disclaimer {
    padding: 8rem 0;
    background: var(--bg-darker);
    position: relative;
    z-index: 3;
}

/* Gradient overlay to fade crystals from top (solid black fading to transparent) */
.disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, 
                rgba(5, 8, 16, 1) 0%,
                rgba(5, 8, 16, 0.7) 40%,
                transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.disclaimer-box {
    background: var(--bg-card);
    border: 2px solid;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.disclaimer-box.warning {
    border-color: var(--warning);
    background: linear-gradient(135deg, var(--warning), transparent);
    background-size: 100% 100%;
    opacity: 0.95;
}

.disclaimer-box.warning::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--warning), transparent);
    opacity: 0.05;
    border-radius: 12px;
    z-index: -1;
}

.disclaimer-box.safety {
    border-color: var(--primary);
    position: relative;
}

.disclaimer-box.safety::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0.05;
    border-radius: 12px;
    z-index: -1;
}

.disclaimer-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.disclaimer-box.warning h3 {
    color: var(--warning);
}

.disclaimer-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.disclaimer-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.disclaimer-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.disclaimer-item h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.disclaimer-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.safety-list {
    list-style: none;
    padding: 0;
}

.safety-list li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    line-height: 1.6;
}

.safety-list li:last-child {
    border-bottom: none;
}

.safety-list li::before {
    content: "→";
    color: var(--primary);
    font-weight: 900;
    margin-right: 0.8rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand .brand-icon {
    font-size: 1.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.2rem 0.5rem;
    border: 2px solid var(--primary);
    border-radius: 6px;
}

.footer-brand .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none; /* Mobile menu can be added with JS */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .price-badge {
        padding: 1.5rem 2rem;
    }

    .price-old {
        font-size: 1.5rem;
    }

    .price-free {
        font-size: 2.5rem;
    }

    .limited-ribbon {
        font-size: 0.7rem;
        padding: 0.4rem 2rem;
        top: -10px;
        right: -10px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .disclaimer-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.active {
        transform: scale(1);
    }

    .download-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===== Smooth Scrolling Utility ===== */
section {
    scroll-margin-top: 80px;
}
