:root {
    --bg-color: #050508;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --primary: #00f3ff;
    --secondary: #7000ff;
    --accent: #ff0055;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 20px;
    --font-main: 'Outfit', sans-serif;
    --font-tech: 'Space Grotesk', sans-serif;
    --easing: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* Cursor Follower */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.1s;
    transform: translate(-50%, -50%);
    display: none; /* Hidden on mobile */
}

@media (min-width: 768px) {
    .cursor-follower {
        display: block;
    }
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: padding 0.3s;
}

.navbar.scrolled {
    padding: 1rem 2rem;
    background: rgba(5, 5, 8, 0.8);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo .dot {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--text-main);
}

.btn-nav {
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-main) !important;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000 !important;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--secondary), transparent);
    top: -10%;
    right: -10%;
    animation: float 10s ease-in-out infinite;
}

.orb-2 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--primary), transparent);
    bottom: -10%;
    left: -10%;
    animation: float 15s ease-in-out infinite reverse;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(1000px) rotateX(60deg) translateY(100px) scale(2);
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title .line {
    display: block;
    opacity: 0; /* Animated in JS */
    transform: translateY(20px);
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-main), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    opacity: 0; /* Animated in JS */
    transform: translateY(20px);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0; /* Animated in JS */
    transform: translateY(20px);
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s var(--easing), box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--text-main);
    color: #000;
}

.btn-primary:hover {
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 3D Elements */
.hero-3d-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-cube {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(0, 243, 255, 0.3);
    transform-style: preserve-3d;
    animation: rotate3D 20s linear infinite;
}

.floating-cube::before, .floating-cube::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 243, 255, 0.3);
}

.floating-cube::before {
    transform: rotateX(90deg) translateZ(50px);
}

.floating-cube::after {
    transform: rotateY(90deg) translateZ(50px);
}

.floating-ring {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(112, 0, 255, 0.3);
    border-radius: 50%;
    transform: rotateX(60deg);
    animation: float 8s ease-in-out infinite;
}

.floating-ring::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(112, 0, 255, 0.1);
    border-radius: 50%;
}

@keyframes rotate3D {
    0% { transform: rotateX(0) rotateY(0) rotateZ(0); }
    100% { transform: rotateX(360deg) rotateY(180deg) rotateZ(360deg); }
}

/* Features Section */
.features {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.feature-card {
    padding: 2.5rem;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.icon-box svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Preview Section */
.preview-section {
    padding: 4rem 0;
}

.preview-container {
    padding: 2rem;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.preview-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.preview-header span {
    margin-left: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-tech);
}

.preview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    min-height: 400px;
}

.map-grid {
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 4px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.grid-cell {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    transition: background 0.5s;
}

.grid-cell.active {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.grid-cell.sold {
    background: var(--accent);
    opacity: 0.5;
}

.stats-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.stat-item .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.stat-item .value {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-tech);
}

/* Values Section */
.values-section {
    padding: 8rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    border-left: 1px solid var(--glass-border);
    position: relative;
}

.value-card::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    width: 1px;
    height: 0;
    background: var(--primary);
    transition: height 0.5s ease;
}

.value-card:hover::before {
    height: 100%;
}

.card-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    font-family: var(--font-tech);
}

/* Showcase */
.showcase {
    padding: 8rem 0;
}

.ui-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1.5rem;
    margin-top: 4rem;
}

.ui-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-tech);
    color: var(--text-muted);
    transition: transform 0.3s;
}

.ui-item:hover {
    transform: scale(1.02);
}

.main-view {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    background: linear-gradient(45deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

.side-view {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.mobile-view {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* Property Types */
.property-types {
    padding: 6rem 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.type-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.type-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s;
}

.type-card:hover .type-icon {
    transform: scale(1.2) rotate(5deg);
}

.type-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.type-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Live Activity Section */
.live-activity-section {
    padding: 4rem 0;
}

.activity-dashboard {
    padding: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    z-index: 2;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.blink {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.activity-feed {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
    max-width: 400px;
}

.feed-item {
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    animation: slideIn 0.5s ease-out;
    backdrop-filter: blur(5px);
}

.feed-item .time {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.2rem;
}

.feed-item .event {
    font-weight: 600;
    color: var(--text-main);
    display: block;
}

.feed-item .details {
    font-size: 0.85rem;
    color: var(--primary);
}

.canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.testimonial-card {
    width: 400px;
    padding: 2rem;
    flex-shrink: 0;
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.gradient-1 { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%); }
.gradient-2 { background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%); }
.gradient-3 { background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%); }

.info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pricing CTA */
.pricing-cta {
    padding: 8rem 0;
    text-align: center;
}

.cta-block {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.cta-bg-anim {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.2), transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

.cta-block h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-block p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact */
.contact {
    padding: 6rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.contact-info {
    padding: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item .icon {
    font-size: 1.5rem;
}

.contact-visual {
    background: linear-gradient(45deg, rgba(0, 243, 255, 0.1), rgba(112, 0, 255, 0.1));
    position: relative;
}

.abstract-map {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--glass-border) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.socials {
    display: flex;
    gap: 2rem;
}

.socials a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.socials a:hover {
    color: var(--primary);
}

.copyright {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
    }
    
    .mobile-menu-btn span {
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--text-main);
        left: 0;
    }
    
    .mobile-menu-btn span:first-child { top: 0; }
    .mobile-menu-btn span:last-child { bottom: 0; }
    
    .preview-content {
        grid-template-columns: 1fr;
    }
    
    .ui-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .main-view, .side-view, .mobile-view {
        grid-column: auto;
        grid-row: auto;
        height: 250px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-visual {
        height: 200px;
    }
}

/* Why Section & Split Layout */
.why-section, .happiness-section {
    padding: 8rem 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-layout.reverse {
    direction: rtl;
}

.split-layout.reverse .split-content {
    direction: ltr;
}

.split-content .sub-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    margin-top: 2rem;
}

.benefit-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.check {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.split-image {
    position: relative;
    padding: 1rem;
    border-radius: 20px;
    overflow: hidden;
}

.img-fluid {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--primary);
    animation: float 6s ease-in-out infinite;
}

/* Growth Tower Animation */
.growth-section {
    padding: 6rem 0;
    text-align: center;
}

.tower-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 4rem;
    margin-top: 4rem;
    height: 400px;
}

.tower {
    width: 200px;
    display: flex;
    flex-direction: column-reverse;
    position: relative;
}

.floor {
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-tech);
    opacity: 0;
    transform: translateY(50px);
    animation: buildTower 4s ease-out infinite;
}

.floor.f1 { animation-delay: 0s; border-bottom: 4px solid var(--primary); }
.floor.f2 { animation-delay: 0.5s; }
.floor.f3 { animation-delay: 1s; }
.floor.f4 { animation-delay: 1.5s; }

.roof {
    height: 0;
    width: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 40px solid var(--primary);
    opacity: 0;
    transform: translateY(50px);
    animation: buildTower 4s ease-out infinite;
    animation-delay: 2s;
    margin-bottom: 4px;
}

@keyframes buildTower {
    0% { opacity: 0; transform: translateY(50px); }
    20% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

.tower-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.stat-card {
    padding: 1.5rem 3rem;
    text-align: left;
    border-left: 4px solid var(--accent);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--text-main);
}

/* Happiness Section */
.happiness-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.happy-item {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.happy-item .emoji {
    font-size: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

.faq-item.active .toggle {
    transform: rotate(45deg);
}

/* Responsive Updates for New Sections */
@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .split-layout.reverse {
        direction: ltr;
    }
    
    .tower-container {
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    
    .happiness-grid {
        grid-template-columns: 1fr;
    }
}
