/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: #0f172a;
    overflow-x: hidden;
}

/* Clean Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

/* Clean background - no floating elements */

/* Remove complex animations for clean look */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #5865f2;
}

.discord-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(88, 101, 242, 0.5));
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #5865f2;
    background: rgba(88, 101, 242, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #5865f2;
    margin-bottom: 2rem;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #5865f2, #7289da, #99aab5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #5865f2;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 4rem;
}

.discord-preview {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.discord-window {
    background: #36393f;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    width: 400px;
    height: 300px;
}

.discord-header {
    background: #2f3136;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #202225;
}

.discord-traffic-lights {
    display: flex;
    gap: 6px;
}

.light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.light.red {
    background: #ff5f56;
}

.light.yellow {
    background: #ffbd2e;
}

.light.green {
    background: #27ca3f;
}

.discord-title {
    font-size: 0.9rem;
    color: #dcddde;
    font-weight: 600;
}

.discord-content {
    display: flex;
    height: 250px;
}

.discord-sidebar {
    background: #2f3136;
    width: 150px;
    padding: 16px 8px;
    border-right: 1px solid #202225;
}

.channel-category {
    font-size: 0.7rem;
    font-weight: 600;
    color: #8e9297;
    margin: 16px 8px 8px;
    text-transform: uppercase;
}

.channel,
.voice-channel {
    padding: 4px 8px;
    margin: 2px 0;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #96989d;
    cursor: pointer;
}

.channel.active {
    background: #5865f2;
    color: white;
}

.discord-chat {
    flex: 1;
    padding: 16px;
    background: #36393f;
}

.message {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #5865f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.message-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: #dcddde;
    margin-bottom: 2px;
}

.message-text {
    font-size: 0.8rem;
    color: #dcddde;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: white;
    box-shadow: 0 4px 14px rgba(88, 101, 242, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #5865f2;
    border: 2px solid #5865f2;
}

.btn-outline:hover {
    background: #5865f2;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    background: rgba(30, 41, 59, 0.3);
}

/* Community Section */
.community {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(114, 137, 218, 0.05) 100%);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.community-card {
    background: rgba(30, 41, 59, 0.4);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #5865f2, #7289da);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.community-card:hover::before {
    transform: scaleX(1);
}

.community-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(88, 101, 242, 0.3);
    box-shadow: 0 15px 35px rgba(88, 101, 242, 0.2);
}

.community-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(88, 101, 242, 0.3));
}

.community-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.community-description {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.community-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(88, 101, 242, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: rgba(30, 41, 59, 0.4);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #5865f2, #7289da);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(88, 101, 242, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(88, 101, 242, 0.3));
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.feature-description {
    color: #94a3b8;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(114, 137, 218, 0.05));
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #0f172a;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #5865f2;
    margin-bottom: 1rem;
}

.footer-description {
    color: #64748b;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-link {
    display: block;
    color: #64748b;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #5865f2;
}

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

.footer-copyright {
    color: #64748b;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 50%;
    color: #5865f2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #5865f2;
    color: white;
    transform: translateY(-2px);
}

/* Login Screen - Clean & Minimal */
.login-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

/* When login is active, hide all other content */
body.login-active {
    overflow: hidden;
}

body.login-active .header,
body.login-active .background-animation {
    display: none !important;
}

/* Hide header when login screen is active */
.login-screen~* .header,
body:has(.login-screen[style*="display: flex"]) .header {
    display: none !important;
}

.login-container {
    text-align: center;
    max-width: 450px;
    width: 100%;
    position: relative;
    z-index: 10000;
}

.login-content {
    background: rgba(30, 41, 59, 0.8);
    padding: 4rem 3rem;
    border-radius: 24px;
    border: 1px solid rgba(88, 101, 242, 0.3);
    backdrop-filter: blur(20px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(88, 101, 242, 0.2) inset;
    position: relative;
    overflow: hidden;
}

.login-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            #5865f2 25%,
            #7289da 50%,
            #5865f2 75%,
            transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.login-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 30px rgba(88, 101, 242, 0.6));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(88, 101, 242, 0.6));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 40px rgba(88, 101, 242, 0.8));
    }
}

.login-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
    background: linear-gradient(135deg, #5865f2, #7289da, #99aab5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.login-description {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Discord Login Button - Special Styling */
.login-screen .btn-large {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 8px 32px rgba(88, 101, 242, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.5px;
}

.login-screen .btn-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(88, 101, 242, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.login-screen .btn-large:active {
    transform: translateY(-1px) scale(1.01);
}

.login-screen .btn-large svg {
    width: 28px;
    height: 28px;
    margin-right: 12px;
}

/* User Profile Navigation */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #5865f2;
}

.user-name {
    color: #e2e8f0;
    font-weight: 500;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.9rem;
}

/* User Profile Section */
.user-profile-section {
    padding: 6rem 2rem 4rem;
    background: rgba(30, 41, 59, 0.2);
}

.profile-card {
    background: rgba(30, 41, 59, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    backdrop-filter: blur(20px);
    max-width: 800px;
    margin: 0 auto;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #5865f2;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.3);
}

.profile-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.profile-discriminator {
    color: #94a3b8;
    font-size: 1.1rem;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-box {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(88, 101, 242, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-2px);
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.1);
}

.stat-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(88, 101, 242, 0.3));
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f1f5f9;
}

.roles-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.role-badge {
    background: rgba(88, 101, 242, 0.2);
    border: 1px solid rgba(88, 101, 242, 0.4);
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    color: #5865f2;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-auth {
        flex-direction: column;
        gap: 0.5rem;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }

    .login-content {
        padding: 2rem 1.5rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 1rem 2rem;
    }

    .hero-visual {
        padding-left: 0;
        margin-top: 2rem;
    }

    .discord-preview {
        transform: none;
    }

    .discord-window {
        width: 300px;
        height: 250px;
    }

    .hero-actions {
        justify-content: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 5rem 1rem 2rem;
    }

    .discord-window {
        width: 280px;
        height: 200px;
    }

    .features,
    .cta {
        padding: 4rem 1rem;
    }
}

/* 💰 Google AdSense Styling for Landing Page */
.adsense-container {
    margin: 2rem 0;
    padding: 1rem;
    text-align: center;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(88, 101, 242, 0.2);
    position: relative;
}

.adsense-container .ad-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.banner-ad {
    margin: 2rem auto;
    max-width: 728px;
}

/* AdSense Section for Landing Page */
.adsense-section {
    padding: 3rem 0;
    background: rgba(15, 23, 42, 0.6);
    border-top: 1px solid rgba(88, 101, 242, 0.2);
    border-bottom: 1px solid rgba(88, 101, 242, 0.2);
}

.adsense-section .adsense-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(88, 101, 242, 0.2);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.2);
}

.adsense-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(15, 23, 42, 0.95);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
    border: 1px solid rgba(88, 101, 242, 0.2);
    backdrop-filter: blur(10px);
}

.adsense-sidebar .ad-label {
    font-size: 0.7rem;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ad Blocker Notice for Landing Page */
.adblocker-notice {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    margin: 1rem 0;
    display: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.adblocker-notice.show {
    display: block;
    animation: slideDown 0.5s ease;
}

.adblocker-notice h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.adblocker-notice p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Mobile AdSense Optimizations for Landing */
@media (max-width: 768px) {
    .adsense-sidebar {
        display: none;
    }

    .adsense-container {
        margin: 1rem 0;
        padding: 0.75rem;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}