* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #00a8ff;
    --dark-bg: #0a1929;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 20px 0;
    z-index: 1000;
    opacity: 0;
    animation: fadeInLate 2.5s ease-out forwards;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.logo-img {
    width: 32px;
    height: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.star-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.star-btn:hover {
    opacity: 0.8;
}

.github-icon {
    width: 24px;
    height: 24px;
}

.hero {
    position: relative;
    background: linear-gradient(180deg, #33b5ff 0%, #66ccff 20%, #99ddff 35%, #cceeff 50%, #e6f5ff 65%, #f5faff 80%, #ffffff 95%);
    padding: 0;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/clouds.png');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
    animation: slideUpClouds 2s ease-out forwards;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="2.5" numOctaves="6" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    background-size: 200px 200px;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    animation: fadeInLateNoise 2.5s ease-out forwards;
}

.hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 160px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: -60px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    line-height: 1;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: bounceInTitle 2.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.dashboard-preview {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: tiltIn 1.2s ease-out forwards;
}

@keyframes tiltIn {
    0% {
        transform: perspective(1500px) rotateX(60deg) translateY(-120px);
        opacity: 1;
    }
    100% {
        transform: perspective(1500px) rotateX(0deg) translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInLate {
    0%, 60% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLateClouds {
    0%, 60% {
        opacity: 0;
    }
    100% {
        opacity: 0.7;
    }
}

@keyframes slideUpClouds {
    0% {
        opacity: 0.7;
        transform: translateY(100px);
    }
    100% {
        opacity: 0.7;
        transform: translateY(0);
    }
}

@keyframes fadeInLateNoise {
    0%, 60% {
        opacity: 0;
    }
    100% {
        opacity: 0.25;
    }
}

@keyframes bounceInTitle {
    0%, 60% {
        opacity: 0;
        transform: translateY(-150px) scale(0.8);
    }
    75% {
        opacity: 1;
        transform: translateY(20px) scale(1.05);
    }
    85% {
        transform: translateY(-10px) scale(0.98);
    }
    95% {
        transform: translateY(5px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dashboard-img {
    width: 100%;
    height: auto;
    display: block;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 20, 30, 0.9);
    color: #ffffff;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-top: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInLate 2.5s ease-out forwards;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    background: rgba(15, 20, 30, 1);
    border-color: rgba(255, 255, 255, 0.2);
}

.download-btn svg {
    width: 20px;
    height: 20px;
}

.divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    margin: 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.features {
    position: relative;
    background: #b3d9f2;
    padding: 100px 0 120px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="2.5" numOctaves="6" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    background-size: 200px 200px;
    opacity: 0.25;
    pointer-events: none;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 45px 35px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.feature-description {
    font-size: 15px;
    line-height: 1.8;
    color: #2a2a2a;
}

.footer {
    background: #b3d9f2;
    padding: 40px 0;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="2.5" numOctaves="6" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    background-size: 200px 200px;
    opacity: 0.25;
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.footer-logo {
    width: 28px;
    height: 28px;
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.footer-menu a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.footer-menu a:hover {
    opacity: 0.7;
}

.copyright {
    color: #2a2a2a;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 120px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 80px;
        letter-spacing: -1px;
    }
    
    .hero {
        padding: 100px 0 80px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .download-btn {
        font-size: 16px;
        padding: 14px 32px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-menu {
        flex-direction: column;
        gap: 10px;
    }
}

html {
    scroll-behavior: smooth;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }


/* Download Page Styles */
.download-hero {
    position: relative;
    background: linear-gradient(180deg, #33b5ff 0%, #66ccff 20%, #99ddff 35%, #cceeff 50%, #e6f5ff 65%, #f5faff 80%, #ffffff 95%);
    padding: 120px 0 100px;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
}

.download-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/clouds.png');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
    animation: slideUpClouds 2s ease-out forwards;
}

.download-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="2.5" numOctaves="6" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    background-size: 200px 200px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.5s ease;
}

/* Dark Mode Styles */
body.dark-mode .download-hero {
    background: linear-gradient(180deg, #0a1628 0%, #0f1f3d 15%, #142952 30%, #193366 45%, #1e3d7a 60%, #23478f 75%, #2851a3 90%, #2d5bb7 100%);
}

body.dark-mode .download-hero::before {
    opacity: 0.4;
}

body.dark-mode .download-hero::after {
    opacity: 0.2;
}

body.dark-mode .hero {
    background: linear-gradient(180deg, #0a1628 0%, #0f1f3d 15%, #142952 30%, #193366 45%, #1e3d7a 60%, #23478f 75%, #2851a3 90%, #2d5bb7 100%);
}

body.dark-mode .hero::before {
    opacity: 0.4;
}

body.dark-mode .hero::after {
    opacity: 0.2;
}

/* Starfield Canvas */
#starfield {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.dark-mode #starfield {
    opacity: 1;
}

body.dark-mode .features {
    background: #1a365c;
}

body.dark-mode .feature-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

body.dark-mode .feature-title {
    color: #ffffff;
}

body.dark-mode .feature-description {
    color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .footer {
    background: #0a1628;
}

body.dark-mode .footer-brand,
body.dark-mode .copyright {
    color: #ffffff;
}

body.dark-mode .footer-menu a {
    color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .download-card {
    background: rgba(26, 54, 92, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .download-card-header h2 {
    color: #ffffff;
}

body.dark-mode .requirements {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .download-info,
body.dark-mode .download-help {
    background: rgba(26, 54, 92, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .download-info h3,
body.dark-mode .download-help h3 {
    color: #ffffff;
}

body.dark-mode .changelog li,
body.dark-mode .download-help p {
    color: rgba(255, 255, 255, 0.8);
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(20deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

body.dark-mode .theme-toggle {
    background: rgba(26, 54, 92, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

.theme-toggle svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.sun-icon {
    color: #ffa500;
    stroke: #ffa500;
}

.moon-icon {
    color: #ffd700;
    display: none;
}

body.dark-mode .sun-icon {
    display: none;
}

body.dark-mode .moon-icon {
    display: block;
}

.download-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
}

.download-title {
    font-size: 64px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.download-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 60px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.download-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.download-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    min-width: 350px;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.download-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.windows-icon {
    width: 48px;
    height: 48px;
    color: #0078d4;
}

.download-card-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.download-card-body {
    text-align: left;
}

.version {
    font-size: 18px;
    font-weight: 600;
    color: #0099ff;
    margin-bottom: 8px;
}

.requirements {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0099ff;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 153, 255, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.download-button:hover {
    background: #0088dd;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 153, 255, 0.4);
}

.download-button svg {
    width: 20px;
    height: 20px;
}

.download-info {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.download-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.changelog {
    list-style: none;
    padding: 0;
    margin: 0;
}

.changelog li {
    font-size: 16px;
    color: #2a2a2a;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.changelog li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0099ff;
    font-weight: bold;
    font-size: 18px;
}

.download-help {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.download-help h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.download-help p {
    font-size: 16px;
    color: #2a2a2a;
    line-height: 1.6;
}

.download-help a {
    color: #0099ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.download-help a:hover {
    color: #0088dd;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .download-title {
        font-size: 42px;
    }
    
    .download-subtitle {
        font-size: 18px;
    }
    
    .download-card {
        min-width: auto;
        width: 100%;
    }
}


/* About Page Styles */
.about-hero {
    position: relative;
    background: linear-gradient(180deg, #33b5ff 0%, #66ccff 20%, #99ddff 35%, #cceeff 50%, #e6f5ff 65%, #f5faff 80%, #ffffff 95%);
    padding: 120px 0 100px;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/clouds.png');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
    animation: slideUpClouds 2s ease-out forwards;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="2.5" numOctaves="6" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    background-size: 200px 200px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.5s ease;
}

body.dark-mode .about-hero {
    background: linear-gradient(180deg, #0a1628 0%, #0f1f3d 15%, #142952 30%, #193366 45%, #1e3d7a 60%, #23478f 75%, #2851a3 90%, #2d5bb7 100%);
}

body.dark-mode .about-hero::before {
    opacity: 0.4;
}

body.dark-mode .about-hero::after {
    opacity: 0.2;
}

.about-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
}

.about-title {
    font-size: 64px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.about-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 80px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-align: left;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

body.dark-mode .about-card {
    background: rgba(26, 54, 92, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

body.dark-mode .about-card h3 {
    color: #ffffff;
}

.about-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #2a2a2a;
}

body.dark-mode .about-card p {
    color: rgba(255, 255, 255, 0.8);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

body.dark-mode .stat-item {
    background: rgba(26, 54, 92, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #0099ff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

body.dark-mode .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.about-cta {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body.dark-mode .about-cta {
    background: rgba(26, 54, 92, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

body.dark-mode .about-cta h2 {
    color: #ffffff;
}

.about-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

body.dark-mode .about-cta p {
    color: rgba(255, 255, 255, 0.7);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0099ff;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 153, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #0088dd;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 153, 255, 0.4);
}

@media (max-width: 768px) {
    .about-title {
        font-size: 42px;
    }
    
    .about-subtitle {
        font-size: 18px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
