/* ============================================
   Modern Software/Technology Theme Styles
   ============================================ */

:root {
    --primary-color: #7b3cff;
    --primary-gradient: linear-gradient(135deg, #7b3cff 0%, #5a2dd4 100%);
    --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-color: #00d4ff;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: #b4b4b4;
    --text-muted: #6b6b6b;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(123, 60, 255, 0.2);
    --shadow-xl: 0 16px 64px rgba(123, 60, 255, 0.3);
}

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

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
}

/* ============================================
   Header & Navigation
   ============================================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-card);
    border-color: var(--border-color);
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 1rem;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 60, 255, 0.6) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.5) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        -webkit-transform: translate(0, 0) scale(1);
        transform: translate(0, 0) scale(1);
    }
    33% {
        -webkit-transform: translate(30px, -30px) scale(1.1);
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        -webkit-transform: translate(-20px, 20px) scale(0.9);
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@-webkit-keyframes float {
    0%, 100% {
        -webkit-transform: translate(0, 0) scale(1);
        transform: translate(0, 0) scale(1);
    }
    33% {
        -webkit-transform: translate(30px, -30px) scale(1.1);
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        -webkit-transform: translate(-20px, 20px) scale(0.9);
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    color: #ffd700;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

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

.download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.download-btn {
    display: inline-block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(123, 60, 255, 0.3));
}

.download-btn img {
    height: 65px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 8px 24px rgba(123, 60, 255, 0.5));
}

.screenshots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.screenshot-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s ease;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 8px;
}

.screenshot-wrapper img {
    width: 200px;
    border-radius: 16px;
    display: block;
    transition: transform 0.4s ease;
}

.screenshot-wrapper:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 80px rgba(123, 60, 255, 0.4);
}

.screenshot-wrapper:hover img {
    transform: scale(1.02);
}

.screenshot-wrapper.featured {
    transform: scale(1.1);
    z-index: 1;
}

.screenshot-wrapper.featured:hover {
    transform: translateY(-10px) scale(1.15);
}

/* ============================================
   Features Section
   ============================================ */

.features {
    position: relative;
    padding: 120px 0;
    background: var(--bg-darker);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    display: -ms-grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    -ms-grid-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Safari fallback for grid */
@supports not (display: grid) {
    .features-grid {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .feature-item {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 320px;
        -ms-flex: 1 1 320px;
        flex: 1 1 320px;
        max-width: 100%;
    }
}

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

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
}

.feature-item:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    border-color: rgba(123, 60, 255, 0.3);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.05);
}

.feature-item:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.feature-icon-wrapper {
    margin-bottom: 24px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 16px;
    font-size: 1.75rem;
    color: white;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    -webkit-transform: scale(1.1) rotate(5deg);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}

.cta-content h2 .gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: center;
}

.google-play-btn {
    background: var(--primary-gradient);
    color: var(--text-primary);
    border: none;
}

.google-play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(123, 60, 255, 0.4);
}

.google-play-btn i {
    font-size: 1.5rem;
}

/* ============================================
   Footer Styling
   ============================================ */

footer {
    background: var(--bg-darker);
    color: var(--text-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.footer-logo-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-nav a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    flex: 1;
}

.footer-copyright span {
    color: #ff4d6d;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(123, 60, 255, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(123, 60, 255, 0.5);
}

/* ============================================
   Coming Soon Modal
   ============================================ */

.coming-soon-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.coming-soon-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    z-index: 1;
}

.coming-soon-modal.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-primary);
    box-shadow: 0 8px 24px rgba(123, 60, 255, 0.3);
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.modal-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.modal-btn {
    padding: 14px 32px;
    background: var(--primary-gradient);
    color: var(--text-primary);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 60, 255, 0.4);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .header-wrapper,
    .container {
        padding: 0 30px;
    }

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

    .screenshots {
        gap: 20px;
    }

    .screenshot-wrapper img {
        width: 160px;
    }

    .screenshot-wrapper.featured {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .header-wrapper,
    .container {
        padding: 0 20px;
    }

    .main-header {
        padding: 15px 0;
    }

    .logo span {
        font-size: 1.5rem;
    }

    .nav-link span {
        display: none;
    }

    .nav-link {
        padding: 10px;
    }

    .hero {
        padding: 120px 0 60px;
    }

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

    .screenshots {
        gap: 15px;
        margin-top: 40px;
    }

    .screenshot-wrapper img {
        width: 140px;
    }

    .screenshot-wrapper.featured {
        transform: scale(1);
    }

    .features {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

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

    .feature-item {
        padding: 30px;
    }

    .cta-section {
        padding: 70px 0;
    }

    .cta-download-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-nav {
        width: 100%;
        justify-content: flex-start;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .scroll-to-top {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .screenshots {
        flex-direction: column;
    }

    .screenshot-wrapper {
        width: 100%;
        max-width: 200px;
    }

    .screenshot-wrapper img {
        width: 100%;
    }

    .feature-item {
        padding: 25px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .feature-item h3 {
        font-size: 1.3rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-logo-name {
        font-size: 1.3rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .modal-content {
        padding: 40px 30px;
        max-width: 90%;
    }

    .modal-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .modal-content h2 {
        font-size: 1.75rem;
    }

    .modal-content p {
        font-size: 1rem;
    }

    .modal-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
        min-width: 120px;
    }
}

/* ============================================
   Terms & Privacy Pages
   ============================================ */

main {
    max-width: 1000px;
    margin: 120px auto 60px;
    padding: 0 40px;
}

main h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-content p,
.terms-content li {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.terms-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.terms-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================
   Changelog Page
   ============================================ */

.changelog-content {
    max-width: 900px;
    margin: 0 auto;
}

.changelog-version {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.changelog-version:hover {
    border-color: rgba(123, 60, 255, 0.3);
    box-shadow: 0 4px 16px rgba(123, 60, 255, 0.1);
}

.version-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 15px;
}

.version-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.version-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    padding: 6px 14px;
    background: var(--bg-darker);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.version-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.version-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.version-content li {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.version-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.version-content li strong {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    main {
        padding: 0 20px;
        margin-top: 100px;
    }

    .changelog-version {
        padding: 30px 20px;
    }

    .version-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .version-header h2 {
        font-size: 1.5rem;
    }

    .version-content h3 {
        font-size: 1.15rem;
    }

    .version-content li {
        font-size: 0.95rem;
    }
}
