/* Base Styles - Modern 2025 Color Palette */
:root {
    /* Modern 2025 Vibrant Colors */
    --accent-primary: #6366F1; /* Indigo - vibrant and modern */
    --accent-secondary: #8B5CF6; /* Purple */
    --accent-tertiary: #EC4899; /* Pink/Magenta */
    --accent-cyan: #06B6D4; /* Cyan */
    --accent-emerald: #10B981; /* Emerald */
    --accent-orange: #F97316; /* Vibrant Orange */
    
    /* Gradient Accents */
    --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);
    --gradient-secondary: linear-gradient(135deg, #06B6D4 0%, #6366F1 100%);
    --gradient-accent: linear-gradient(135deg, #EC4899 0%, #F97316 100%);
    
    /* Light Mode Colors */
    --light-bg: #FFFFFF;
    --light-bg-secondary: #F8FAFC;
    --light-bg-tertiary: #F1F5F9;
    --light-text: #0F172A;
    --light-text-secondary: #475569;
    --light-text-muted: #64748B;
    --light-border: #E2E8F0;
    --light-card: #FFFFFF;
    --light-shadow: rgba(15, 23, 42, 0.08);
    
    /* Dark Mode Colors */
    --dark-bg: #0A0E27;
    --dark-bg-secondary: #1E293B;
    --dark-bg-tertiary: #334155;
    --dark-text: #F1F5F9;
    --dark-text-secondary: #CBD5E1;
    --dark-text-muted: #94A3B8;
    --dark-border: #334155;
    --dark-card: #1E293B;
    --dark-shadow: rgba(0, 0, 0, 0.4);
    
    /* Theme-aware colors (default: light mode) */
    --primary-color: var(--dark-bg-secondary);
    --secondary-color: var(--dark-bg-tertiary);
    --accent-color: var(--accent-primary);
    --bg-color: var(--light-bg);
    --bg-secondary: var(--light-bg-secondary);
    --bg-tertiary: var(--light-bg-tertiary);
    --text-color: var(--light-text);
    --text-secondary: var(--light-text-secondary);
    --text-muted: var(--light-text-muted);
    --border-color: var(--light-border);
    --card-bg: var(--light-card);
    --shadow-color: var(--light-shadow);
    
    /* Legacy support */
    --dark-bg: var(--dark-bg);
    --light-bg: var(--light-bg);
    --dark-text: var(--dark-text);
    --light-text: var(--dark-text);
    
    --section-padding: 80px 0;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode */
[data-theme="dark"] {
    --primary-color: var(--dark-bg-secondary);
    --secondary-color: var(--dark-bg-tertiary);
    --accent-color: var(--accent-primary);
    --bg-color: var(--dark-bg);
    --bg-secondary: var(--dark-bg-secondary);
    --bg-tertiary: var(--dark-bg-tertiary);
    --text-color: var(--dark-text);
    --text-secondary: var(--dark-text-secondary);
    --text-muted: var(--dark-text-muted);
    --border-color: var(--dark-border);
    --card-bg: var(--dark-card);
    --shadow-color: var(--dark-shadow);
    --light-text: var(--dark-text);
    --light-bg: var(--dark-bg);
}

/* Light Mode (explicit) */
[data-theme="light"] {
    --primary-color: var(--dark-bg-secondary);
    --secondary-color: var(--dark-bg-tertiary);
    --accent-color: var(--accent-primary);
    --bg-color: var(--light-bg);
    --bg-secondary: var(--light-bg-secondary);
    --bg-tertiary: var(--light-bg-tertiary);
    --text-color: var(--light-text);
    --text-secondary: var(--light-text-secondary);
    --text-muted: var(--light-text-muted);
    --border-color: var(--light-border);
    --card-bg: var(--light-card);
    --shadow-color: var(--light-shadow);
    --light-text: var(--light-text);
    --light-bg: var(--light-bg);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Overpass', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: var(--light-text);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    gap: 8px;
    line-height: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
    filter: brightness(1.1);
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-accent {
    background: var(--gradient-primary);
    color: var(--light-text);
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-accent:hover {
    background: var(--gradient-secondary);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5);
}

.btn-download-main {
    background: var(--gradient-primary);
    color: var(--light-text);
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4), 0 0 20px rgba(139, 92, 246, 0.3);
    position: relative;
}

.btn-download-main::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.btn-download-main:hover {
    background: var(--gradient-secondary);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5), 0 0 30px rgba(139, 92, 246, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.btn-download-main span:not(.btn-icon) {
    font-weight: 600;
    transform: translateY(2px);
}

.btn-support-group {
    flex: 1;
    display: flex;
    gap: 15px;
}

.btn-support-half {
    flex: 1;
}

.btn-support-half:first-child {
    background: linear-gradient(135deg, #13C3FF 0%, #0BA5D9 100%);
    color: var(--light-text);
}

.btn-support-half:first-child:hover {
    background: linear-gradient(135deg, #0BA5D9 0%, #0991BF 100%);
}

.btn-support-half:last-child {
    background: linear-gradient(135deg, #0070BA 0%, #005A99 100%);
    color: var(--light-text);
}

.btn-support-half:last-child:hover {
    background: linear-gradient(135deg, #005A99 0%, #004A7F 100%);
}

.btn-support-half span:not(.btn-icon) {
    transform: translateY(2px);
}

.btn-demo span:not(.btn-icon) {
    transform: translateY(2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--light-text);
}

.btn-outline:hover {
    border-color: var(--light-text);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.btn-demo {
    background: var(--gradient-accent);
    color: var(--light-text);
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.btn-demo:hover {
    background: linear-gradient(135deg, #F97316 0%, #EC4899 100%);
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.5);
    transform: translateY(-3px) scale(1.02);
}

.btn-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 35px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 550px;
}

.btn-row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.btn.equal-width {
    flex: 1;
    min-width: 0;
    justify-content: center;
}

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

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.btn-icon svg {
    display: block;
}

/* Badges Container - spread across the width above title */
.badges-container {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

/* Made By Badge */
.made-by-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    width: fit-content;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    cursor: pointer;
    height: 36px;
    gap: 2px;
}

.made-by-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFFFFF;
    white-space: nowrap;
    line-height: 1;
}

.made-by-badge .heart-icon {
    display: flex;
    align-items: center;
    line-height: 0;
    margin-top: -4px;
}

.made-by-badge .heart-icon svg {
    display: block;
}

.made-by-badge:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

/* GitHub Stars Badge */
.github-stars-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    width: fit-content;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    cursor: pointer;
    height: 36px;
    gap: 8px;
}

/* Version Badge */
.version-badge {
    display: flex;
    align-items: center;
    background-color: rgba(255, 215, 0, 0.15);
    padding: 8px 14px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.3);
    height: 36px;
    gap: 8px;
}

.version-icon {
    display: flex;
    align-items: center;
    color: var(--accent-primary);
    line-height: 0;
}

.version-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-primary);
    line-height: 1;
}

/* Download Count Badge */
.download-count-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 36px;
    gap: 6px;
}

.download-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    line-height: 1;
}

.download-icon svg {
    display: block;
}

.download-count-badge .count {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--light-text);
    line-height: 1;
    transform: translateY(2px);
}

.download-count-badge .label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    transform: translateY(2px);
}

/* Reset all top positions to ensure perfect alignment */
.github-stars-badge .stars,
.github-stars-badge .github-icon,
.github-stars-badge .text {
    position: relative;
    top: 0;
}

.github-stars-badge:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.github-stars-badge:hover .text {
    color: #FFFFFF;
}

.github-stars-badge:hover .stars {
    color: #FBBF24;
}

.github-stars-badge .stars {
    color: #FBBF24;
    margin-right: 8px;
    font-size: 0.9rem;
    position: relative;
    top: 0px;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

.github-stars-badge .github-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #06B6D4;
    line-height: 1;
}

.github-stars-badge .github-icon svg {
    display: block;
}

.github-stars-badge .text {
    font-size: 0.9rem;
    line-height: 1;
    font-weight: 500;
    color: #FFFFFF;
    transform: translateY(2px);
}

/* Header */
header {
    background-color: rgba(30, 41, 59, 0.95);
    color: var(--text-color);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px var(--shadow-color);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="light"] header {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 36px;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: rotate(10deg);
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--text-color);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links li {
    margin-left: 25px;
    position: relative;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 1.05rem;
    padding: 5px 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.nav-links a svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    display: block;
    flex-shrink: 0;
}

.nav-links a span {
    display: inline-block;
    transform: translateY(2px);
}

/* Move regular nav items (Home, Features, Community, FAQ) down slightly */
.nav-links li:not(.nav-icons-group):not(.nav-download-btn) a {
    transform: translateY(8px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

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

/* Nav icons group - closer spacing */
.nav-links .nav-icons-group {
    display: flex;
    gap: 8px;
    margin-left: 25px;
}

/* Icon-only buttons for GitHub and Discord */
.nav-links .icon-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    padding: 0;
    transition: var(--transition);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px var(--shadow-color);
}

.nav-links .icon-btn::after {
    display: none;
}

.nav-links .icon-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

.nav-links .github-btn:hover {
    background-color: var(--bg-tertiary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--shadow-color);
}

.nav-links .discord-btn {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.nav-links .discord-btn:hover {
    background: linear-gradient(135deg, #4752C4 0%, #3C45A5 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.nav-links .kofi-btn {
    background: linear-gradient(135deg, #13C3FF 0%, #0BA5D9 100%);
    border: 1px solid rgba(19, 195, 255, 0.3);
}

.nav-links .kofi-btn:hover {
    background: linear-gradient(135deg, #0BA5D9 0%, #0991BF 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 195, 255, 0.4);
}

.nav-links .paypal-btn {
    background: linear-gradient(135deg, #0070BA 0%, #005A99 100%);
    border: 1px solid rgba(0, 112, 186, 0.3);
}

.nav-links .paypal-btn:hover {
    background: linear-gradient(135deg, #005A99 0%, #004A7F 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 112, 186, 0.4);
}

/* Theme Toggle Button */
.nav-links .nav-theme-toggle {
    margin-left: 15px;
}

.theme-toggle-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    padding: 0;
    transition: var(--transition);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px var(--shadow-color);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.theme-toggle-btn:hover {
    background-color: var(--bg-tertiary);
    transform: translateY(-2px) rotate(15deg);
    box-shadow: 0 6px 16px var(--shadow-color);
}

.theme-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    transition: var(--transition);
    color: var(--accent-primary);
}

.sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Nav Download Button */
.nav-links .nav-download-btn {
    margin-left: 15px;
}

.nav-links .btn-nav-download {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    height: auto;
    gap: 6px;
    color: var(--light-text);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    background: var(--gradient-primary);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.nav-links .btn-nav-download:hover {
    color: var(--light-text);
    background: var(--gradient-secondary);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.nav-links .btn-nav-download svg {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
}

.nav-links .btn-nav-download span {
    display: inline-block;
    transform: translateY(2px);
}

.nav-links .btn-nav-download::after {
    display: none;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: var(--light-text);
    padding: 180px 0 200px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><rect fill="rgba(255,255,255,0.02)" width="1" height="1"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* Hero heading - centered and stretched horizontally */
.hero-heading {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
    width: 100%;
}

.hero-heading h1 {
    font-size: 3.8rem;
    margin-bottom: 0;
    line-height: 1.1;
    background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 30%, #06B6D4 60%, #EC4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    position: relative;
    letter-spacing: -1px;
    filter: drop-shadow(0 4px 20px rgba(99, 102, 241, 0.3));
    width: 100%;
    white-space: normal;
    max-width: none;
    animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {
    0%, 100% { filter: drop-shadow(0 4px 20px rgba(99, 102, 241, 0.3)); }
    50% { filter: drop-shadow(0 4px 30px rgba(236, 72, 153, 0.4)); }
}

.hero-heading h1::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(8px);
    transform: translateY(5px);
    opacity: 0.5;
}

.hero-heading h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0.9;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

/* Hero description - stretched horizontally below title */
.hero-description {
    text-align: center;
    margin: 0 auto 40px;
    max-width: 900px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-description p {
    font-size: 1.3rem;
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.6;
}

/* Hero content - just the image */
.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    width: 100%;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.hero-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Hero info line - horizontal text line */
.hero-info-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.info-item {
    white-space: nowrap;
}

.info-item strong {
    color: #06B6D4;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.info-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    margin: 0 3px;
}

/* PowerShell Command Block */
.powershell-command-wrapper {
    margin: 20px auto 10px auto;
    max-width: 455px;
    width: 100%;
}

.powershell-command-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 5px 16px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.powershell-command-container:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.powershell-tooltip {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.powershell-command-wrapper:hover .powershell-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.powershell-command-container code {
    flex: 1;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    color: #06B6D4;
    background: transparent;
    padding: 0;
    user-select: all;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}

.copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px;
    margin-right: -8px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    color: #06B6D4;
    transform: scale(1.1);
}

.copy-btn.copied {
    color: #10B981;
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}

/* Responsive Design for PowerShell Command Block */
@media (max-width: 768px) {
    .powershell-command-wrapper {
        max-width: 100%;
    }

    .powershell-command-container {
        padding: 10px 12px;
    }

    .powershell-command-container code {
        font-size: 0.85rem;
    }

    .powershell-tooltip {
        font-size: 0.8rem;
    }
}

/* Hero actions - centered buttons */
.hero-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-actions .btn-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.btn-row-primary .btn {
    min-width: 220px;
}

.btn-row-support .btn {
    min-width: 180px;
}

.btn-support {
    background: linear-gradient(135deg, #13C3FF 0%, #0BA5D9 100%);
    color: var(--light-text);
}

.btn-support:hover {
    background: linear-gradient(135deg, #0BA5D9 0%, #0991BF 100%);
}

.btn-support:last-of-type {
    background: linear-gradient(135deg, #0070BA 0%, #005A99 100%);
}

.btn-support:last-of-type:hover {
    background: linear-gradient(135deg, #005A99 0%, #004A7F 100%);
}

.highlight-accent {
    color: var(--accent-primary);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(99, 102, 241, 0.4);
}

.footer-version {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}


/* Features Section */
.features {
    padding: var(--section-padding);
    background-color: var(--bg-color);
    transition: background-color 0.3s ease;
}

.section-title {
    text-align: left;
    margin-bottom: 60px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

.feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-image {
    flex: 1.25;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feature-item:hover .feature-image img {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-text h3 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Feature Lists Styling */
.feature-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.feature-text ul ul {
    list-style-type: circle;
    margin-top: 8px;
    margin-bottom: 8px;
}

.feature-text ul ul ul {
    list-style-type: square;
}

.feature-text li {
    margin-bottom: 5px;
    color: var(--text-secondary);
}

.feature-text li:last-child {
    margin-bottom: 0;
}

/* Media Testimonials - Compact "Featured In" section */
.media-testimonials {
    padding: 60px 0;
    background: var(--gradient-secondary);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.media-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.media-testimonials .section-title {
    margin-bottom: 30px;
}

.media-testimonials .section-title h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.media-testimonials-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.media-testimonial-card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    color: var(--light-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    flex: 1;
    min-width: 0;
    min-height: 120px;
    backdrop-filter: blur(10px);
}

.media-testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.3);
}

.media-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.media-testimonial-card:hover .media-name {
    color: rgba(255, 255, 255, 0.9);
}

.media-quote-text {
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.media-testimonial-card:hover .media-quote-text {
    color: rgba(255, 255, 255, 0.7);
}

/* User Testimonials */
.testimonials {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    color: var(--light-text);
    overflow: hidden;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* Testimonials Slider Container */
.testimonials-slider {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 0;
    overflow: hidden;
    position: relative;
}

/* Testimonials Track - This is what moves */
.testimonials-track {
    display: flex;
    gap: 20px;
    position: relative;
    animation: scroll 30s linear infinite;
    width: max-content;
}

/* Pause animation on hover */
.testimonials-track:hover {
    animation-play-state: paused;
}

/* Testimonial Cards */
.testimonial-card {
    flex: 0 0 300px;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.3);
    background-color: rgba(255, 255, 255, 0.18);
    border-color: rgba(236, 72, 153, 0.3);
}

/* Star Ratings */
.testimonial-card .stars {
    color: #FBBF24;
    font-size: 1rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Testimonial Text */
.testimonial-card .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: var(--light-text);
}

/* Author Name */
.testimonial-card .testimonial-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: #06B6D4;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.4);
}

/* Date */
.testimonial-card .testimonial-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* Animation for the scrolling effect */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Community Section */
.community {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    color: var(--light-text);
}

.community .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.community .section-title h2 {
    color: var(--light-text);
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    text-align: center;
}

.community-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.community-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    color: var(--light-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.community-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.community-card.discord-card:hover {
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.2);
}

.community-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
    color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.community-card:hover .community-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.15);
}

.discord-card .community-icon {
    color: #5865F2;
}

.community-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-text);
}

.community-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.community-card .stat {
    font-size: 0.9rem;
    color: #06B6D4;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(6, 182, 212, 0.15);
    border-radius: var(--border-radius);
    margin-top: auto;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.discord-card .stat {
    color: #5865F2;
    background: rgba(88, 101, 242, 0.1);
}

/* Call to Action */
.cta {
    background: var(--gradient-accent);
    color: var(--light-text);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta h2 {
    margin-bottom: 30px;
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
    background-color: var(--bg-color);
    transition: background-color 0.3s ease;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    background-color: var(--card-bg);
    box-shadow: 0 4px 15px var(--shadow-color);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.faq-item:hover {
    box-shadow: 0 8px 25px var(--shadow-color);
    transform: translateY(-3px);
    border-color: var(--accent-primary);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--card-bg);
    transition: var(--transition);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 20px;
    color: var(--text-secondary);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-primary);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }
}

/* Footer */
footer {
    background: var(--gradient-secondary);
    color: var(--light-text);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* Left align the first footer column heading and content */
.footer-column:first-child {
    text-align: left;
}

/* Right align the second footer column heading */
.footer-column:last-child h3 {
    text-align: right;
}

.footer-links {
    list-style: none;
    text-align: right;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #06B6D4;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-made-by {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-made-by:hover {
    color: #EC4899;
    text-shadow: 0 0 8px rgba(236, 72, 153, 0.5);
}

.footer-heart-icon {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.footer-heart-icon svg {
    display: block;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-fadeInUp {
    opacity: 0;
}

.fadeInUp {
    animation: fadeInUp 1s ease forwards;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 150px 0 120px; /* Increased bottom padding for mobile */
    }

    .hero-heading h1 {
        font-size: 2.5rem;
        white-space: normal;
        max-width: 100%;
    }

    .hero-heading {
        margin-bottom: 25px;
        text-align: center;
    }

    .hero-heading h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-description {
        margin-bottom: 30px;
    }

    .hero-description p {
        font-size: 1.1rem;
    }

    .hero-content {
        margin-bottom: 30px;
    }

    .hero-image-container {
        max-width: 100%;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-info-line {
        flex-direction: column;
        gap: 10px;
        font-size: 0.9rem;
    }

    .info-separator {
        display: none;
    }

    .hero-actions .btn-row {
        flex-direction: column;
        width: 100%;
    }

    .btn-row-primary .btn,
    .btn-row-support .btn {
        width: 100%;
        min-width: unset;
    }

    .badges-container {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .feature-item, .feature-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .media-testimonials-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .media-testimonial-card {
        flex: 1 1 100%;
    }

    .testimonials-slider {
        max-width: 100%;
    }

    .testimonial-card {
        flex: 0 0 280px;
    }

    .feature-text {
        order: 1;
    }

    .feature-image {
        order: 0;
        margin-bottom: 30px;
    }

    .section-title {
        text-align: center;
    }

    .section-title h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .community-cards {
        grid-template-columns: 1fr;
    }
}
