/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #0f172a;
    --accent-purple: #9333ea;
    --accent-blue: #1a73e8;
    --text-dark: #000000;
    --text-light: #4f5865;
    --white: #ffffff;
    --bg-body: #f8fafc;
    --nav-height: 72px;
    --whatsapp-green: #25D366;
    --gradient-hero: linear-gradient(135deg, rgba(88, 28, 135, 1) 0%, rgba(30, 58, 138, 1) 100%);
}



/* Floating Share Button */
.floating-share-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-share-btn:hover {
    transform: scale(1.1);
    background: #1d4ed8;
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.5);
}

.floating-share-btn:active {
    transform: scale(0.9);
}

@media (max-width: 768px) {
    .floating-share-btn {
        width: 50px;
        height: 50px;
        bottom: 110px;
        /* Moved up to clear the WhatsApp bar */
        right: 20px;
        font-size: 1.25rem;
    }
}

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

a {
    text-decoration: none;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Redesigned Header */
.main-header {
    background: #000000;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.logo-text .highlight {
    color: var(--accent-blue);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: auto;
}

.nav-actions {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.nav-link {
    font-weight: 500;
    color: #e2e8f0;
    transition: color 0.2s;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-blue);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

/* Footer Redesign */
.main-footer {
    background: #000000;
    color: #f8fafc;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 1px solid #334155;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

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

.footer-desc {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.7;
}

.text-white {
    color: white !important;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #94a3b8;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 16px;
}

.footer-col a {
    color: #cbd5e1;
    transition: 0.2s;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.footer-col a:hover {
    color: var(--accent-blue);
    border-bottom-color: var(--accent-blue);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.85rem;
    color: #94a3b8;
}



@media (max-width: 768px) {
    .whatsapp-notification {
        bottom: 15px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        margin: 0 auto;
        padding: 12px 15px;
        transform: translateY(100px);
    }

    .wa-content {
        gap: 12px;
    }

    .wa-logo {
        font-size: 1.8rem !important;
    }

    .wa-title {
        font-size: 0.95rem;
    }

    .wa-subtitle {
        font-size: 0.8rem;
    }

    .whatsapp-notification .cta-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000000;
        padding: 20px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #334155;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-actions {
        display: block;
    }

    .mobile-toggle {
        display: block;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Original Hero Styles Adjustment */
.hero {
    /* Since header is fixed, hero needs no margin-top (handled by body padding/margin) */
    border-radius: 0 0 30px 30px;
    /* Modern bottom curve */
}

/* Helper */


/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4c1d95 0%, #1e3a8a 100%);
    /* Deep Purple to Blue */
    color: var(--white);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    /* Flush with header */
    border-radius: 0 0 40px 40px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    order: 2;
}

/* Status Pill */
.status-pill {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: #e9d5ff;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.status-pill i {
    font-size: 0.6rem;
    margin-right: 8px;
    color: #2563eb;
    /* Purple dot */
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: 3rem;
    /* Reduced from 3.5rem to fit single line */
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: white;
    white-space: nowrap;
    /* Force single line */
}

.hero h1 span {
    display: inline-block;
    /* Force new line for Free Gifts if needed, or inline */
    background: linear-gradient(to right, #67e8f9, #c084fc);
    /* Cyan to Purple gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 5px;
}

/* 404 Page Styles */
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 40px 20px;
}

.error-content {
    max-width: 600px;

}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-blue);
    /* Fallback */
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.error-message {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: rgb(0, 0, 0);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-secondary {
    background-color: white;
    color: var(--text-dark);
    border: 1px solid #e2e8f0;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


.hero p {
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 90%;
    line-height: 1.6;
    margin-bottom: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
}

.hero-visual picture {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    border-radius: 24px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Mobile Stack */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }

    .hero-text {
        align-items: center;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-img {
        max-width: 100%;
        transform: none;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 600px) {
    .hero {
        padding: 20px 0;
        border-radius: 0 0 25px 25px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .status-pill {
        padding: 4px 12px;
        font-size: 0.75rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-content {
        gap: 25px;
        padding: 20px;
    }
}

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

/* Updated Rewards Grid */
.section-title {
    text-align: center;
    margin: 50px 0 30px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.025em;
    border: none;
    padding: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.25rem;
        margin: 30px 0 20px;
    }
}

.reward-grid {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reward-card {
    background: var(--white);
    border-radius: 15px;
    padding: 12px 5px;
    margin: 0 -20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 5px solid var(--accent-blue);
    transition: all 0.2s ease;
}

.reward-left {
    flex-shrink: 0;
}

.reward-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.reward-center {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.reward-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 6px;
    line-height: 1.2;
}

.reward-timer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e2e8f0;
    color: #000000;
    padding: 3px 12px;
    border-radius: 7px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid #cbd5e1;
}

.reward-timer i {
    color: #4f46e5;
    font-size: 0.7rem;
}



.reward-right {
    flex-shrink: 0;
}

.collect-btn {
    display: inline-block;
    background: var(--accent-blue);
    color: white;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.collect-btn:hover {
    background: #1d4ed8;
}

@media (max-width: 600px) {
    .reward-card {
        padding: 10px 15px;
        gap: 10px;
        /* Keep horizontal layout */
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .reward-icon {
        width: 45px;
        height: 45px;
    }

    .reward-title {
        font-size: 1rem;
    }

    .reward-timer {
        font-size: 0.7rem;
        padding: 2px 8px;
    }



    .collect-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: auto;
    }
}

/* Ad Container (CLS Prevention) */
.ads-container {
    text-align: center;
    margin: 30px 0;
    overflow: hidden;
    min-height: 280px;
    /* Reserve space */
    background: #f8fafc;
    /* Placeholder color */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}



.ad-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

/* Blog Content */
.breadcrumb {
    margin: 20px 0;
    font-size: 0.9rem;
    color: #64748b;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--accent-blue);
    transition: opacity 0.2s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.blog-content {
    margin-bottom: 60px;
}

.blog-content h1 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.blog-content h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 32px 0 16px;
    color: #1a73e8;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.blog-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.blog-content p {
    margin-bottom: 18px;
    color: #334155;
    line-height: 1.8;
    font-size: 1rem;
}

.blog-content ul {
    margin-left: 20px;
    margin-bottom: 24px;
    color: #334155;
    line-height: 1.7;
}

.blog-content li {
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .blog-content h1 {
        font-size: 1.4rem;
    }

    .blog-content h2 {
        font-size: 1.25rem;
    }

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

    .blog-content p {
        font-size: 0.95rem;
    }



}

/* Blog Images */
.blog-content img {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: none !important;
    /* Override hero-img transform if used */
}

/* Social Buttons (Home) */
.official-socials {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 30px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s, opacity 0.2s;
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: white;
}

.social-btn.fb {
    background: #1877f2;
    box-shadow: 0 4px 6px -1px rgba(24, 119, 242, 0.3);
}

.social-btn.insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 6px -1px rgba(220, 39, 67, 0.3);
}

.social-btn.x {
    background: #000000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

/* FAQ */


/* Old footer styles removed */

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(168, 85, 247, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0);
    }
}

/* Tip Box */
.tip-box {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--accent-blue);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}



.tip-content {
    flex-grow: 1;
}

.tip-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-blue);
    margin-bottom: 8px;
}

.tip-content h3,
.tip-content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    margin-top: 5px;
}

.tip-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .tip-box {
        flex-direction: column;
        gap: 15px;
    }
}

/* Info Table Styles */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.95rem;
}

.info-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 16px 24px;
    color: var(--text-dark);
}

.info-table td:first-child {
    background: #f8fafc;
    font-weight: 600;
    width: 40%;
    color: #475569;
}

/* User Selection Styles */
::selection {
    background: #000000;
    color: #ffffff;
}

/* For Firefox */
::-moz-selection {
    background: #000000;
    color: #ffffff;
}

/* PWA Install Button */
/* PWA Install Button */
.install-app-btn {
    display: none;
    /* Hidden by default, shown via JS */
    position: fixed;
    top: calc(var(--nav-height) + 15px);
    right: 20px;
    z-index: 999;
    align-items: center;
    gap: 8px;
    background: var(--accent-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.install-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: #1d4ed8;
}

.install-app-btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .install-app-btn {
        right: 15px;
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

/* Global H2 Styling */
h2 {
    color: #1a73e8;
}

/* Tip Box Styling */
.tip {
    background-color: #f0f9ff;
    border-left: 4px solid var(--accent-blue);
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tip strong {
    color: var(--primary-color);
}

/* WhatsApp Notification */
.whatsapp-notification {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid #25D366;
    animation: sliceIn 0.5s ease-out forwards;
    max-width: 100%;
    margin: 30px 0;
    font-family: 'Outfit', sans-serif;
}

@keyframes sliceIn {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.whatsapp-close {
    position: absolute;
    top: 5px;
    right: 8px;
    cursor: pointer;
    color: #94a3b8;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.whatsapp-close:hover {
    color: #ef4444;
}

.wa-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.wa-logo {
    font-size: 2.2rem;
    color: #25D366;
}

.wa-text {
    flex-grow: 1;
}

.wa-title {
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a;
    line-height: 1.2;
}

.wa-subtitle {
    font-size: 0.8rem;
    color: #64748b;
}

.cta-btn {
    background: #25D366;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.2s, background 0.2s;
}

.cta-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Social Buttons */
.official-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: transform 0.2s, opacity 0.2s;
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: white;
}

.social-btn i {
    font-size: 1.1rem;
}

.social-btn.fb {
    background-color: #1877F2;
}

.social-btn.insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.x {
    background-color: #000000;
}

.social-btn.web {
    background-color: #64748b;
}

.social-btn.yt {
    background-color: #FF0000;
}

.social-btn.gh {
    background-color: #333;
}

.meta-info {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.meta-info a {
    color: var(--accent-blue);
    text-decoration: none;
}

.meta-info a:hover {
    text-decoration: underline;
}



.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: transform 0.2s, opacity 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    color: white;
}

.social-btn.fb {
    background: #1877F2;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
}

.lang-dropbtn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    height: 100%;
    display: flex;
    align-items: center;
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    background-color: #0f172a;
    /* Dark background to match theme */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    top: 100%;
    right: -10px;
    /* Align slightly to right */
    padding: 8px 0;
}

.lang-dropdown-content a {
    color: #e2e8f0;
    padding: 10px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.lang-dropdown-content a:hover,
.lang-dropdown-content a.active {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent-blue);
}

.lang-dropdown:hover .lang-dropdown-content,
.lang-dropdown.active .lang-dropdown-content {
    display: block;
}

/* Mobile adjustments */
/* Prevent Auto Ads in Header & Hero to avoid CLS */
.main-header .google-auto-placed,
.main-header .adsbygoogle,
.hero .google-auto-placed,
.hero .adsbygoogle {
    display: none !important;
}


/* Interactive Ratings */
.rating-display {
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.rating-display:hover {
    background: #f1f5f9 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.rating-display:active {
    transform: translateY(0);
}

.rating-display.voted {
    cursor: default;
    opacity: 0.8;
}

.rating-display.voted:hover {
    background: #f8fafc !important;
    transform: none;
    box-shadow: none;
}

.stars {
    display: inline-flex;
    gap: 2px;
}

.stars i {
    transition: color 0.2s;
    font-size: 1.2rem;
}

.rating-display:not(.voted) .stars:hover i {
    color: #fbbf24;
}

.stars i.hover {
    color: #fbbf24 !important;
}

.rating-display.voted .stars i {
    color: #fbbf24 !important;
}