/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --spotify-green: #1DB954;
    --spotify-green-hover: #1ed760;
    --spotify-green-dark: #1aa34a;
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-tertiary: #808080;
    --border-color: #2a2a2a;
    --gradient-start: #1DB954;
    --gradient-end: #1ed760;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(29, 185, 84, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 12px 32px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-wrap: wrap;
    gap: 16px;
}

.navbar.scrolled .nav-content {
    background: rgba(10, 10, 10, 0.5);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--spotify-green);
}

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

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

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: 
        radial-gradient(ellipse at top, rgba(29, 185, 84, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(30, 215, 96, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(26, 170, 70, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #0f1419 25%, #0a0a0a 50%, #0f1419 75%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
    isolation: isolate;
    margin-bottom: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(29, 185, 84, 0.2) 0%, rgba(30, 215, 96, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    clip-path: inset(0 0 0 0);
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 215, 96, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    clip-path: inset(0 0 0 0);
    will-change: transform;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.9; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-shadow: 0 4px 20px rgba(29, 185, 84, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 50%, #1DB954 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    filter: drop-shadow(0 0 10px rgba(29, 185, 84, 0.5));
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    color: white;
    box-shadow: 
        0 4px 15px rgba(29, 185, 84, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1ed760 0%, #1DB954 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(29, 185, 84, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(29, 185, 84, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(29, 185, 84, 0.1);
    border-color: rgba(29, 185, 84, 0.5);
    color: var(--spotify-green);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(29, 185, 84, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: left;
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.stat:hover {
    background: rgba(26, 26, 26, 0.4);
    border-color: rgba(29, 185, 84, 0.3);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(29, 185, 84, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    min-height: 28px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.stat-value .golden-star {
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    background: none;
}

.stat-value a {
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
}

.stat-value a:hover {
    filter: brightness(1.2);
}

/* Golden star styling */
.stat-value .golden-star {
    position: relative !important;
    z-index: 100 !important;
    display: inline-block !important;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    margin-right: 6px;
    vertical-align: middle;
}

.stat-value .golden-star path {
    fill: #FFD700;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.6));
}

.stat-label {
    font-size: 14px;
    color: var(--text-tertiary);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.demo-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(29, 185, 84, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.demo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.1) 0%, rgba(30, 215, 96, 0.05) 100%);
    border-radius: 24px;
    pointer-events: none;
    z-index: -1;
}

.demo-container:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(29, 185, 84, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(29, 185, 84, 0.2);
}

.demo-gif {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 2;
    margin-top: 0;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 64px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(29, 185, 84, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(26, 26, 26, 0.5);
    border-color: rgba(29, 185, 84, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(29, 185, 84, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(29, 185, 84, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    margin-top: 48px;
}

.screenshot-item {
    text-align: center;
}

.screenshot-container {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    margin-bottom: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.screenshot-container:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(29, 185, 84, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.screenshot-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Installation Section */
.install {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

.install-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.install-method {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    position: relative;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.install-method:hover {
    background: rgba(26, 26, 26, 0.5);
    border-color: rgba(29, 185, 84, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(29, 185, 84, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.method-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--spotify-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: white;
}

.method-title {
    font-size: 24px;
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--text-primary);
}

.method-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.method-description kbd {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 4px 8px;
    font-family: monospace;
    font-size: 14px;
    color: var(--text-primary);
}

.method-description code {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 4px 8px;
    font-family: monospace;
    font-size: 14px;
    color: var(--spotify-green);
}

/* Setup Section */
.setup {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.setup-steps {
    max-width: 800px;
    margin: 48px auto 0;
}

.setup-step {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.setup-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(29, 185, 84, 0.5), transparent);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.setup-step:hover {
    background: rgba(26, 26, 26, 0.5);
    border-color: rgba(29, 185, 84, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(29, 185, 84, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.setup-step:hover::before {
    opacity: 1;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--spotify-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.step-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.step-content {
    margin-left: 68px;
}

.step-list {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.step-list li {
    margin-bottom: 12px;
}

.step-list ul {
    margin-top: 8px;
    margin-left: 24px;
}

.step-list a {
    color: var(--spotify-green);
    text-decoration: none;
}

.step-list a:hover {
    text-decoration: underline;
}

.step-list strong {
    color: var(--text-primary);
}

.note-box {
    background: rgba(29, 185, 84, 0.1);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(29, 185, 84, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    color: var(--text-secondary);
    box-shadow: 
        0 4px 15px rgba(29, 185, 84, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.note-box strong {
    color: var(--spotify-green);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 32px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--spotify-green);
}

.footer-credits {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-credits a {
    color: var(--spotify-green);
    text-decoration: none;
}

.footer-credits a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    color: var(--text-tertiary);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .step-content {
        margin-left: 0;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }
    
    .navbar .container {
        padding: 0 16px;
    }
    
    .nav-content {
        padding: 10px 16px;
        border-radius: 16px;
        justify-content: center;
        gap: 12px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .nav-links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 13px;
        padding: 4px 8px;
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar .container {
        padding: 0 12px;
    }
    
    .nav-content {
        padding: 8px 12px;
        border-radius: 12px;
        gap: 8px;
    }
    
    .logo {
        font-size: 18px;
        gap: 8px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo-text {
        display: none;
    }
    
    .nav-links {
        gap: 8px;
        font-size: 12px;
    }
    
    .nav-links a {
        font-size: 12px;
        padding: 4px 6px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .install-methods {
        grid-template-columns: 1fr;
    }
}

/* Smooth scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .feature-card,
    .install-method,
    .setup-step {
        animation: fadeInUp 0.3s ease-out;
    }
}

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

