#loaderTitle {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 4px 24px rgba(99,102,241,0.18);
}
/* News Shower Animation */
.news-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 10001;
    pointer-events: none;
}
.news-word {
    position: absolute;
    top: -40px;
    font-size: clamp(0.7rem, 1vw, 1rem);
    font-weight: 600;
    color: var(--primary-color);
    opacity: 0.85;
    white-space: nowrap;
    pointer-events: none;
    animation: newsRainDrop 5s linear forwards;
    text-shadow: 0 2px 8px rgba(99,102,241,0.15);
}

.news-word[data-drift="right"] {
    animation-name: newsRainDropRight;
    animation-duration: 5s;
}
.news-word[data-drift="left"] {
    animation-name: newsRainDropLeft;
    animation-duration: 5s;
}
}
@keyframes newsRainDropRight {
    0% { top: -40px; opacity: 0.85; transform: translateX(0); }
    80% { opacity: 1; }
    100% { top: 100vh; opacity: 0; transform: translateX(30px); }
}
@keyframes newsRainDropLeft {
    0% { top: -40px; opacity: 0.85; transform: translateX(0); }
    80% { opacity: 1; }
    100% { top: 100vh; opacity: 0; transform: translateX(-30px); }
}
/* Under Construction Message */
.under-construction-message {
    margin: 2rem 0 1.5rem 0;
    font-size: 1.2rem;
    color: var(--accent-color);
    background: rgba(16, 185, 129, 0.08);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.08);
    animation: flash 1.2s linear infinite;
}

@keyframes flash {
    0%, 100% { background: rgba(16, 185, 129, 0.08); color: var(--accent-color); }
    20% { background: rgba(16, 185, 129, 0.18); color: #fff; }
    40% { background: rgba(16, 185, 129, 0.28); color: var(--primary-color); }
    60% { background: rgba(16, 185, 129, 0.18); color: #fff; }
    80% { background: rgba(16, 185, 129, 0.08); color: var(--accent-color); }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb; /* Professional blue */
    --secondary-color: #64748b; /* Muted slate */
    --accent-color: #10b981; /* Emerald accent */
    --bg-dark: #18181b; /* Deep neutral background */
    --bg-darker: #111113; /* Even deeper neutral */
    --text-light: #f3f4f6; /* Light text for dark bg */
    --text-gray: #94a3b8; /* Muted gray for secondary text */
    --gradient-1: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-2: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.18);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.binary-rain {
    width: 200px;
    height: 100px;
    position: relative;
    margin: 0 auto 20px;
    overflow: hidden;
}

.binary-rain::before {
    content: "01001000 01100101 01101100 01101100 01101111";
    position: absolute;
    color: var(--primary-color);
    font-family: monospace;
    font-size: 12px;
    animation: rain 2s linear infinite;
}

@keyframes rain {
    0% { transform: translateY(-100px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100px); opacity: 0; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    position: relative;
}
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%236366f1" opacity="0.3"/></svg>') repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100vh) rotate(360deg); }
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 10s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        text-align: center;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-visual {
        height: auto;
        margin-top: 2rem;
    }
    .under-construction-message {
        font-size: 1rem;
        padding: 0.7rem 1rem;
    }
    .hero-timer {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem 0;
    }
    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 0.5rem;
    }
    .hero-title {
        font-size: 1.3rem;
    }
    .hero-content {
        padding: 0 0.2rem;
    }
    .under-construction-message {
        font-size: 0.95rem;
        padding: 0.5rem 0.5rem;
    }
    .hero-timer {
        gap: 0.5rem;
        padding: 0.2rem 0;
    }
    .countdown-item {
        min-width: 60px;
        padding: 0.7rem;
    }
}
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    background-image: none;
    background-clip: initial;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    text-shadow: 0 2px 12px rgba(37,99,235,0.18);
}

.text-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: reveal 0.8s ease forwards;
}

.text-reveal:nth-child(1) { animation-delay: 0.2s; }
.text-reveal:nth-child(2) { animation-delay: 0.4s; }
.text-reveal:nth-child(3) { animation-delay: 0.6s; }
.text-reveal:nth-child(4) { animation-delay: 0.8s; }

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    background: rgba(37,99,235,0.08);
    padding: 0.8rem 1.3rem;
    border-radius: 10px;
    text-shadow: 0 2px 12px rgba(15,15,35,0.18);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
    color: var(--text-light);
    background-image: none;
    background-clip: initial;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: var(--shadow-glow);
    border: 2px solid var(--primary-color);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    outline: none;
}

.btn-primary:hover, .btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #6366f1 80%, #8b5cf6 100%);
    color: #fff;
    outline: 2px solid #6366f1;
}

.btn-secondary {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    outline: none;
}

.btn-secondary:hover, .btn-secondary:focus {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    outline: 2px solid #6366f1;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Elements */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.floating-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.floating-card span {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.floating-card:nth-child(1) {
    top: 10%;
    left: 20%;
    animation: float-1 7s linear infinite alternate;
}

.floating-card:nth-child(2) {
    top: 30%;
    right: 10%;
    animation: float-2 9s linear infinite alternate;
}

.floating-card:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation: float-3 8s linear infinite alternate;
}

.floating-card:nth-child(4) {
    bottom: 10%;
    right: 30%;
    animation: float-4 10s linear infinite alternate;
}

.floating-card:nth-child(5) {
    top: 50%;
    left: 50%;
    animation: float-5 6s linear infinite alternate;
}

.floating-card:nth-child(6) {
    top: 60%;
    left: 25%;
    animation: float-6 11s linear infinite alternate;
}
.floating-card:nth-child(7) {
    top: 20%;
    right: 40%;
    animation: float-7 12s linear infinite alternate;
}
.floating-card:nth-child(8) {
    bottom: 20%;
    left: 60%;
    animation: float-8 13s linear infinite alternate;
}
.floating-card:nth-child(9) {
    top: 70%;
    right: 20%;
    animation: float-9 14s linear infinite alternate;
}
.floating-card:nth-child(10) {
    top: 35%;
    left: 70%;
    animation: float-10 15s linear infinite alternate;
}
}

@keyframes float-1 {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes float-2 {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(40px) rotate(-10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes float-3 {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(8deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes float-4 {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(35px) rotate(-8deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes float-5 {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(12deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes float-6 {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(30px) rotate(6deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes float-7 {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-35px) rotate(-6deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes float-8 {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(45px) rotate(14deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes float-9 {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-50px) rotate(-14deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes float-10 {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(60px) rotate(18deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-gray);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--primary-color);
    margin: 0 auto 10px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-left: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(-45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(99, 102, 241, 0.1);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Domains Section */
.domains {
    padding: 8rem 0;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.domain-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s;
}

.domain-card:hover::before {
    left: 100%;
}

.domain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
}

.domain-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.domain-icon i {
    font-size: 2rem;
    color: white;
}

.domain-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.domain-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.domain-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Coming Soon Section */
.coming-soon {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
    text-align: center;
}

.coming-soon h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.hero-timer {
    margin: 2rem auto 2rem auto;
    justify-content: center;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 15px;
    padding: 1rem 0;
    box-shadow: 0 2px 12px rgba(99, 102, 241, 0.08);
}
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 100px;
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Newsletter */
.newsletter-signup h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: var(--text-gray);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p,
.footer-section li {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        justify-content: center;
    }
    
    .floating-card {
        position: relative !important;
        margin: 1rem;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .hero-visual {
        height: auto;
    }
    
    .floating-elements {
        position: relative;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
}

/* Animation for elements coming into view */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}