/**
 * Holly - Main Stylesheet
 * Version: 2.4.7
 * Author: Zppolar
 * Date: 2023
 */

:root {
    /* Cores principais */
    --primary-color: #8a4fff;
    --primary-light: #b18aff;
    --primary-dark: #5f27cd;
    --secondary-color: #ff9ff3;
    --accent-color: #7effdb;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --info-color: #3498db;
    
    /* Cores de texto */
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #999;
    --text-on-primary: #fff;
    
    /* Cores de fundo */
    --bg-color: #f9f3ff;
    --card-bg: #fff;
    --navbar-bg: #fff;
    --footer-bg: #1a1a2e;
    
    /* Bordas */
    --border-color: #f0e6ff;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --shadow-primary: 0 4px 16px rgba(138, 79, 255, 0.3);
    
    /* Espaçamentos */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    
    /* Tipografia */
    --font-body: 'Nunito', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3rem;
}

[data-theme="dark"] {
    --primary-color: #9c6aff;
    --primary-light: #7c4dff;
    --primary-dark: #6a1b9a;
    --secondary-color: #ff79b0;
    --text-color: #f5f5f5;
    --text-light: #d5d5d5;
    --text-lighter: #b5b5b5;
    --bg-color: #1a1a2e;
    --card-bg: #16213e;
    --navbar-bg: #0f3460;
    --border-color: #2d3748;
    --footer-bg: #0f3460;
}

/* Reset e Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilidades */
.text-gradient {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header .subtitle {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Componentes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: var(--text-base);
}

.btn i {
    font-size: 1em;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    box-shadow: var(--shadow-primary);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(138, 79, 255, 0.4);
}

.secondary-btn {
    background-color: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: rgba(138, 79, 255, 0.1);
    transform: translateY(-2px);
}

.large-btn {
    padding: var(--space-md) var(--space-lg);
    font-size: var(--text-lg);
}

.small-btn {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.875rem;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: var(--primary-light);
    color: var(--text-on-primary);
}

/* Layout */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--navbar-bg);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) var(--space-md);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: var(--space-xs) var(--space-md);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: var(--text-xl);
    color: var(--primary-color);
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: rotate(15deg) scale(1.1);
}

.navbar-links {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    margin: 0;
    padding: 0;
}

.navbar-links li a {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--text-color);
    position: relative;
}

.navbar-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.navbar-links li a.active {
    color: var(--primary-color);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    background: none;
    border: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(5rem + var(--space-xl)) var(--space-md) var(--space-xl);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-color) 0%, rgba(138, 79, 255, 0.05) 100%);
}

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

.hero-content h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-content p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    border: 5px solid var(--card-bg);
    box-shadow: var(--shadow-lg);
    transform: rotate(-5deg);
    transition: all 0.5s ease;
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.05);
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

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

.stat-number {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--text-base);
    color: var(--text-light);
}

/* Features Section */
.features {
    position: relative;
    padding: var(--space-xl) 0;
    background-color: var(--card-bg);
}

.features::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Q50,0 0,100 Z" fill="%23f9f3ff"/></svg>');
    background-size: 100% 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(138, 79, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--primary-color);
    font-size: var(--text-2xl);
}

.feature-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.feature-list {
    list-style: none;
    margin: var(--space-md) 0;
}

.feature-list li {
    margin-bottom: var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-light);
}

.feature-list i {
    color: var(--success-color);
    font-size: 0.875rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

/* Demo Section */
.demo {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
}

.demo-content {
    flex: 1;
}

.demo-content h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}

.demo-buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.demo-video {
    flex: 1;
    display: flex;
    justify-content: center;
}

.video-placeholder {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.video-placeholder i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--text-on-primary);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder i:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--card-bg);
    padding: var(--space-xl) 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Q50,0 0,100 Z" fill="%23f9f3ff"/></svg>');
    background-size: 100% 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.testimonial-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.user-info h4 {
    font-size: var(--text-lg);
    margin-bottom: 0.25rem;
}

.user-info p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: var(--space-sm);
}

.rating {
    color: var(--warning-color);
}

/* CTA Section */
.cta {
    text-align: center;
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-on-primary);
}

.cta h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}

.cta p {
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    color: rgba(255,255,255,0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: var(--text-on-primary);
    padding: var(--space-xl) 0 var(--space-md);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Q50,0 0,100 Z" fill="%23f9f3ff"/></svg>');
    background-size: 100% 100%;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-brand img {
    width: 50px;
    height: 50px;
}

.footer-brand span {
    font-weight: 700;
    font-size: var(--text-xl);
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--space-xs);
}

.footer-links h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
    color: var(--text-on-primary);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: var(--space-xs);
}

.footer-social h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
    color: var(--text-on-primary);
}

.social-icons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    color: var(--text-on-primary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.discord {
    background-color: #5865F2;
}

.social-icon.twitter {
    background-color: #1DA1F2;
}

.social-icon.github {
    background-color: #333;
}

.social-icon.youtube {
    background-color: #FF0000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-lang {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-light);
}

.footer-lang select {
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0.25rem 0.5rem;
    color: var(--text-on-primary);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Animações */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

.floating {
    animation: float 3s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.decorative {
    position: absolute;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: var(--text-3xl);
    }
    
    .demo {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: calc(4rem + var(--space-xl));
    }
    
    .hero-content {
        margin-bottom: var(--space-xl);
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--navbar-bg);
        flex-direction: column;
        align-items: center;
        padding: var(--space-md) 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .navbar-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .navbar-links li {
        width: 100%;
        text-align: center;
    }
    
    .navbar-links li a {
        display: block;
        padding: var(--space-sm);
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-content h1 {
        font-size: var(--text-2xl);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-image img {
        max-width: 90%;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================================
   Páginas internas - estilo unificado
   ========================================================= */
.page-hero {
    position: relative;
    padding: calc(4rem + var(--space-xl)) 0 var(--space-xl);
    background: radial-gradient(circle at top right, rgba(138, 79, 255, 0.25), transparent 55%), linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(249, 243, 255, 0.95));
    overflow: hidden;
}

.page-hero .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
}

.page-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(138, 79, 255, 0.1);
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.page-hero p {
    color: var(--text-light);
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero-meta .meta-card {
    flex: 1;
    min-width: 140px;
    padding: var(--space-sm);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    background-color: rgba(255,255,255,0.6);
    box-shadow: var(--shadow-sm);
}

.hero-meta .meta-card span {
    display: block;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--primary-color);
}

.page-hero-media {
    position: relative;
    padding: var(--space-lg);
    border-radius: 24px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    min-height: 280px;
}

.page-hero-media::after,
.page-hero-media::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(138, 79, 255, 0.15);
    filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.page-hero-media::after {
    top: -40px;
    right: -60px;
}

.page-hero-media::before {
    bottom: -60px;
    left: -40px;
    animation-delay: 1.5s;
}

.page-hero-media img,
.page-hero-media video {
    width: 100%;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 3;
}

.page-content {
    padding: var(--space-xl) 0;
}

.glass-card {
    background: rgba(255,255,255,0.7);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
}

.info-grid,
.legal-grid,
.commands-grid,
.status-grid,
.documents-grid,
.pricing-grid,
.blog-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.info-card,
.legal-card,
.command-card,
.status-card,
.doc-card,
.pricing-card,
.blog-card {
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    background-color: var(--card-bg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::after,
.legal-card::after,
.command-card::after,
.status-card::after,
.doc-card::after,
.pricing-card::after,
.blog-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(138,79,255,0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover,
.legal-card:hover,
.command-card:hover,
.status-card:hover,
.doc-card:hover,
.pricing-card:hover,
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.info-card:hover::after,
.legal-card:hover::after,
.command-card:hover::after,
.status-card:hover::after,
.doc-card:hover::after,
.pricing-card:hover::after,
.blog-card:hover::after {
    opacity: 1;
}

.info-card i,
.legal-card i,
.command-card i,
.status-card i,
.doc-card i,
.pricing-card i,
.blog-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.info-card h3,
.legal-card h3,
.command-card h3,
.doc-card h3,
.pricing-card h3,
.blog-card h3 {
    margin-bottom: var(--space-sm);
}

.info-card p,
.legal-card p,
.command-card p,
.doc-card p,
.pricing-card p,
.blog-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.legal-section {
    margin-bottom: var(--space-lg);
}

.legal-section h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
}

.legal-section ul {
    padding-left: 1.5rem;
    color: var(--text-light);
}

.legal-section ul li {
    margin-bottom: 0.4rem;
}

.timeline {
    border-left: 2px solid var(--border-color);
    padding-left: var(--space-md);
    margin-top: var(--space-md);
}

.timeline-step {
    margin-bottom: var(--space-md);
    position: relative;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -var(--space-md);
    top: 0.4rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    background-color: var(--card-bg);
}

.status-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.status-card .status-pill {
    align-self: flex-start;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.status-pill.online {
    background-color: rgba(46, 204, 113, 0.15);
    color: var(--success-color);
}

.status-pill.warning {
    background-color: rgba(243, 156, 18, 0.15);
    color: var(--warning-color);
}

.status-pill.offline {
    background-color: rgba(231, 76, 60, 0.15);
    color: var(--danger-color);
}

.doc-list {
    list-style: none;
    margin-top: var(--space-sm);
    padding: 0;
}

.doc-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.pricing-card {
    text-align: center;
    border-top: 4px solid var(--primary-light);
}

.pricing-card.highlight {
    border-top-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.pricing-price {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin: var(--space-md) 0;
    color: var(--primary-color);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    margin-bottom: 0.4rem;
    color: var(--text-light);
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-light);
}

.commands-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.command-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
}

.command-syntax {
    font-family: 'Fira Code', 'Consolas', monospace;
    background-color: rgba(138, 79, 255, 0.08);
    padding: 0.35rem 0.6rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.page-media-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: var(--space-sm);
    position: relative;
    z-index: 3;
}

.page-media-stack img {
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: var(--shadow-md);
}

.error-page {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.error-page h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
}

.error-page p {
    color: var(--text-light);
    max-width: 540px;
    margin-bottom: var(--space-lg);
}

.secondary-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.secondary-nav a {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-nav a.active,
.secondary-nav a:hover {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
}

@media (max-width: 992px) {
    .page-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-meta {
        justify-content: center;
    }
    
    .page-hero-media {
        max-width: 420px;
        margin: 0 auto;
    }
}