:root {
    /* Light Yellow Theme Colors */
    --primary-yellow: #FFF9E6;
    --accent-yellow: #FFE082;
    --dark-yellow: #FFB300;
    --orange-accent: #FF9800;

    /* Text Colors */
    --text-dark: #4A3728;
    --text-medium: #6D5D4B;
    --text-light: #8B7355;

    /* Auxiliary Colors */
    --white: #FFFFFF;
    --border: #FFD54F;
    --shadow: rgba(255, 179, 0, 0.15);

    /* Typography */
    --font-display: 'Fredoka', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--primary-yellow);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Paw Prints Decoration */
.paw-prints {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1;
    pointer-events: none;
}

.paw {
    font-size: 24px;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.paw:nth-child(1) { animation-delay: 0s; }
.paw:nth-child(2) { animation-delay: 0.2s; }
.paw:nth-child(3) { animation-delay: 0.4s; }
.paw:nth-child(4) { animation-delay: 0.6s; }
.paw:nth-child(5) { animation-delay: 0.8s; }
.paw:nth-child(6) { animation-delay: 1s; }
.paw:nth-child(7) { animation-delay: 1.2s; }
.paw:nth-child(8) { animation-delay: 1.4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: linear-gradient(180deg, var(--accent-yellow) 0%, var(--primary-yellow) 100%);
    border-bottom: 3px solid var(--border);
    box-shadow: 0 4px 20px var(--shadow);
    z-index: 999;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--orange-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--orange-accent);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: 20px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: var(--primary-yellow);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--accent-yellow);
    border-color: var(--orange-accent);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border: 3px solid var(--border);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 12px 20px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: var(--primary-yellow);
    color: var(--orange-accent);
}

.lang-option.active {
    background: var(--accent-yellow);
    font-weight: 700;
    color: var(--orange-accent);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px 80px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-yellow) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🐾';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%) rotate(-15deg);
}

.hero::after {
    content: '🐾';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    top: 50%;
    right: 10%;
    transform: translate(50%, -50%) rotate(15deg);
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    color: var(--text-medium);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 2px solid var(--border);
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.4;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--dark-yellow) 0%, var(--orange-accent) 100%);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.4);
}

.hero-badge-bottom {
    display: inline-block;
    color: var(--text-light);
    font-size: 14px;
    margin-top: 20px;
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Game Section */
.game-section {
    padding: 80px 20px;
    background: var(--white);
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
}

.game-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    border: 4px solid var(--border);
    background: var(--text-dark);
}

.game-wrapper iframe {
    display: block;
    width: 100%;
    height: 600px;
    border: none;
}

.fullscreen-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px auto 0;
    padding: 12px 24px;
    background: var(--dark-yellow);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fullscreen-btn:hover {
    background: var(--orange-accent);
    transform: scale(1.05);
}

/* Share Buttons */
.share-buttons {
    margin-top: 40px;
    text-align: center;
}

.share-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.share-buttons-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.share-twitter {
    background: #000000;
}

.share-twitter:hover {
    background: #1a1a1a;
}

.share-reddit {
    background: #FF4500;
}

.share-reddit:hover {
    background: #ff5722;
}

.share-facebook {
    background: #1877F2;
}

.share-facebook:hover {
    background: #4a90e2;
}

.share-copy {
    background: var(--dark-yellow);
}

.share-copy:hover {
    background: var(--orange-accent);
}

.share-email {
    background: var(--text-medium);
}

.share-email:hover {
    background: var(--text-dark);
}

.share-btn.copied {
    background: #4CAF50;
}

.share-btn.copied::after {
    content: ' ✓';
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
}

.content-section.alt-bg {
    background: var(--white);
}

.content-section h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 20px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: var(--primary-yellow);
    padding: 30px;
    border-radius: 20px;
    border: 3px solid var(--border);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dark-yellow) 0%, var(--orange-accent) 100%);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.step-card p {
    font-size: 16px;
    margin-bottom: 0;
}

/* Viral Grid */
.viral-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.viral-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    border: 3px solid var(--border);
    transition: all 0.3s ease;
}

.viral-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--orange-accent);
}

.viral-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.viral-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.viral-card p {
    font-size: 16px;
    margin-bottom: 0;
}

/* Hall of Shame */
.hall-of-shame {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-yellow) 100%);
}

.shame-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.shame-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    border: 3px solid var(--orange-accent);
    transition: all 0.3s ease;
}

.shame-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.3);
}

.shame-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.shame-card p {
    font-size: 16px;
    margin-bottom: 15px;
}

.shame-quote {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--orange-accent);
    font-weight: 600;
    font-size: 14px;
}

/* Tips List */
.tips-list {
    max-width: 900px;
    margin: 40px auto 0;
    list-style: none;
}

.tips-list li {
    background: var(--primary-yellow);
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 15px;
    border-left: 5px solid var(--orange-accent);
    font-size: 17px;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.tips-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px var(--shadow);
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.support-card {
    background: var(--primary-yellow);
    padding: 30px;
    border-radius: 20px;
    border: 3px solid var(--border);
}

.support-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.support-card ul {
    list-style: none;
}

.support-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: var(--text-medium);
}

.support-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange-accent);
    font-weight: bold;
}

.support-contact {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
}

.support-contact a {
    color: var(--orange-accent);
    font-weight: 600;
    text-decoration: none;
}

.support-contact a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--white);
    border: 3px solid var(--border);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--orange-accent);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: 28px;
    color: var(--orange-accent);
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-yellow);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    margin: 0;
    font-size: 16px;
}

.faq-answer a {
    color: var(--orange-accent);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--primary-yellow) 100%);
    text-align: center;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-quote {
    max-width: 700px;
    margin: 30px auto 0;
    font-style: italic;
    font-size: 18px;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 30px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-description {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-yellow);
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Legal Pages */
.legal-page {
    background: var(--white);
    min-height: 100vh;
    padding-top: 100px;
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--primary-yellow);
    padding: 50px;
    border-radius: 20px;
    border: 3px solid var(--border);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: left;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-medium);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--orange-accent);
    text-decoration: none;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

.back-link {
    text-align: center;
    margin-top: 50px;
}

.back-link .cta-button {
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .paw-prints {
        top: 60px;
        height: 40px;
    }

    .paw {
        font-size: 18px;
    }

    .navbar {
        top: 0;
    }

    .nav-container {
        height: 60px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .hero {
        padding: 60px 20px 50px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .cta-button {
        font-size: 18px;
        padding: 15px 30px;
    }

    .content-section {
        padding: 60px 20px;
    }

    .content-section h2 {
        font-size: 32px;
    }

    .steps-grid,
    .viral-grid,
    .shame-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .game-wrapper iframe {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .content-section h2 {
        font-size: 28px;
    }

    .game-wrapper iframe {
        height: 350px;
    }

    .share-buttons-grid {
        gap: 10px;
    }

    .share-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}
