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

:root {
    --primary-green: #2d8659;
    --primary-yellow: #ffd700;
    --primary-dark: #1a5d3a;
    --gradient-pink: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

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

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s;
}

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

/* Hero Section */
.hero {
    padding: 40px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 134, 89, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-wrapper {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.app-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
}

.app-icon {
    display: flex;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

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

.icon-bg {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2d8659 100%);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.icon-bg:hover {
    transform: scale(1.05);
}

.icon-text-yono {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-yellow);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.icon-text-rummy {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.tile {
    background: var(--bg-white);
    color: var(--primary-dark);
    padding: 10px 14px;
    border: 3px solid var(--primary-green);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s;
}

.tile:hover {
    transform: translateY(-2px);
}

.app-stats {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 120px;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.stat-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
}

.stat-icon {
    font-size: 1.8rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.game-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin: 0;
}

.bonus-badge {
    display: inline-flex;
    flex-direction: column;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    align-self: flex-start;
}

.bonus-amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
}

.bonus-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.apk-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s;
    display: inline-block;
}

.apk-link:hover {
    color: #0052a3;
    text-decoration: underline;
}

.hero-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(196, 69, 105, 0.1) 100%);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #ff6b9d;
}

.highlight-text {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px dashed var(--border-color);
}

.download-btn {
    background: var(--gradient-pink);
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.download-btn:hover::before {
    width: 300px;
    height: 300px;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.5);
}

.download-btn:active {
    transform: translateY(-1px);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}

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

.telegram-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 8px;
}

.telegram-link:hover {
    color: #0052a3;
    background: rgba(0, 102, 204, 0.1);
    text-decoration: none;
}

.telegram-icon {
    font-size: 1.3rem;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.content-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-section p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.content-section strong {
    color: var(--primary-green);
    font-weight: 600;
}

.features-list,
.benefits-list,
.bonus-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li,
.benefits-list li,
.bonus-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.features-list li::before,
.benefits-list li::before,
.bonus-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.steps-list {
    margin: 20px 0;
    padding-left: 30px;
}

.steps-list li {
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.step-item::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 80px;
    width: 2px;
    height: calc(100% + 25px);
    background: var(--primary-green);
    opacity: 0.3;
    z-index: 0;
}

.step-item:last-child::before {
    display: none;
}

.step-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.steps-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(45, 134, 89, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .step-item::before {
        display: none;
    }

    .step-number {
        margin: 0 auto;
    }

    .step-content {
        text-align: left;
    }
}

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

.variant-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.variant-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.variant-card h3 {
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.variant-card p {
    color: var(--text-light);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
}

.faq-container {
    margin-top: 30px;
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-green);
    transition: transform 0.3s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0 20px;
}

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

.faq-answer p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

/* Notice Section */
.notice-section {
    background: #fff3cd;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #ffc107;
    margin: 40px 0;
}

.notice-box h2 {
    color: #856404;
    margin-bottom: 15px;
}

.notice-box p {
    color: #856404;
    margin-bottom: 12px;
}

.notice-box strong {
    color: #856404;
}

/* Keywords Section */
.keywords-section {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 40px 0;
}

.keywords-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.keywords-text strong {
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .app-details {
        order: 1;
    }

    .game-info {
        order: 2;
        text-align: center;
    }

    .game-title-wrapper {
        align-items: center;
    }

    .bonus-badge {
        align-self: center;
    }

    .cta-section {
        order: 3;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 1.1rem;
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        padding: 30px 0 50px;
    }

    .hero-content {
        gap: 35px;
        margin-bottom: 40px;
    }

    .game-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .app-stats {
        gap: 15px;
        justify-content: center;
    }

    .stat-item {
        min-width: 100px;
        padding: 12px 15px;
    }

    .stat-value {
        font-size: 1.4rem;
    }

    .download-btn {
        padding: 18px 35px;
        font-size: 1rem;
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }

    .faq-section {
        padding: 20px;
    }

    .icon-bg {
        width: 180px;
        height: 180px;
    }

    .icon-text-yono {
        font-size: 2.2rem;
    }

    .tile {
        padding: 8px 12px;
        font-size: 1.1rem;
    }

    .bonus-amount {
        font-size: 1.8rem;
    }

    .site-title {
        font-size: 1.2rem;
    }
}

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

    .header {
        padding: 12px 0;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

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

    .hero {
        padding: 25px 0 40px;
    }

    .hero-content {
        gap: 30px;
        margin-bottom: 35px;
    }

    .game-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

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

    .icon-bg {
        width: 160px;
        height: 160px;
        padding: 20px;
    }

    .icon-text-yono {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .tile {
        padding: 6px 10px;
        font-size: 1rem;
    }

    .app-stats {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

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

    .bonus-badge {
        padding: 12px 20px;
    }

    .bonus-amount {
        font-size: 1.6rem;
    }

    .download-btn {
        padding: 16px 25px;
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .highlight-text {
        font-size: 1rem;
    }

    .apk-link {
        font-size: 1.1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: var(--bg-light);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    color: var(--text-light);
    font-size: 0.9rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: var(--text-light);
}

.breadcrumb-list a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-list a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb-list li[aria-current="page"] {
    color: var(--text-dark);
    font-weight: 500;
}

/* Legal Pages & About Page Styles */
.legal-page,
.about-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.page-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-green);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

.legal-page .content-section,
.about-page .content-section {
    margin-bottom: 35px;
}

.legal-page h2,
.about-page h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    margin-top: 30px;
}

.legal-page h3,
.about-page h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 20px;
}

.legal-page h4,
.about-page h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    margin-top: 15px;
}

.definition-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.definition-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.definition-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.acknowledgment {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* About Page Specific Styles */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    margin-top: 0;
}

.feature-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

.commitment-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.commitment-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.commitment-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Site Title Link */
.site-title-link {
    text-decoration: none;
    color: inherit;
}

.site-title-link:hover .site-title {
    color: var(--primary-green);
}

.nav-link.active {
    color: var(--primary-green);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive for Legal/About Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .legal-page h2,
    .about-page h2 {
        font-size: 1.5rem;
    }

    .legal-page h3,
    .about-page h3 {
        font-size: 1.2rem;
    }

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

    .legal-page,
    .about-page {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.7rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .breadcrumb {
        padding: 12px 0;
    }

    .breadcrumb-list {
        font-size: 0.85rem;
    }
}

/* Fixed Download Button */
.fixed-download-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed-download-btn {
    background: var(--gradient-pink);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
}

.fixed-download-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.fixed-download-btn:hover::before {
    width: 300px;
    height: 300px;
}

.fixed-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.5);
}

.fixed-download-btn:active {
    transform: translateY(-1px);
}

.download-icon {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    animation: bounce 2s infinite;
}

.download-text {
    position: relative;
    z-index: 1;
}

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

/* Responsive for Fixed Download Button */
@media (max-width: 768px) {
    .fixed-download-container {
        bottom: 15px;
        left: 50%;
        right: auto;
        width: calc(100% - 40px);
        max-width: 300px;
    }

    .fixed-download-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.9rem;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .fixed-download-container {
        bottom: 10px;
        width: calc(100% - 20px);
        max-width: 280px;
    }

    .fixed-download-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .download-icon {
        font-size: 1.1rem;
    }
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 0;
    margin: 50px 0;
    border-radius: 15px;
}

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

.stat-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-desc {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-light);
    padding: 50px 0;
    margin: 50px 0;
    border-radius: 15px;
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating-text {
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Requirements Section */
.requirements-section {
    margin: 50px 0;
}

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

.requirement-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.requirement-card h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.requirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.requirement-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Tips Section */
.tips-section {
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    padding: 50px 0;
    margin: 50px 0;
    border-radius: 15px;
}

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

.tip-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.tip-card h3 {
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Download Statistics Section */
.download-stats-section {
    margin: 50px 0;
}

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

.download-stat-item {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow);
}

.download-stat-item h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-value-large {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Comparison Table Section */
.comparison-section {
    margin: 50px 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    min-width: 600px;
}

.comparison-table thead {
    background: var(--primary-dark);
    color: white;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

/* Responsive for New Sections */
@media (max-width: 768px) {
    .stats-grid,
    .testimonials-grid,
    .tips-grid,
    .download-stats {
        grid-template-columns: 1fr;
    }

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

    .stat-number,
    .stat-value-large {
        font-size: 2rem;
    }

    .comparison-table-wrapper {
        overflow-x: scroll;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .stats-section,
    .testimonials-section,
    .tips-section {
        padding: 30px 0;
    }

    .stat-card,
    .testimonial-card,
    .tip-card {
        padding: 20px;
    }

    .stat-number,
    .stat-value-large {
        font-size: 1.8rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .download-btn,
    .cta-section,
    .breadcrumb,
    .mobile-menu-toggle,
    .fixed-download-container,
    .stats-section,
    .testimonials-section,
    .tips-section,
    .download-stats-section,
    .comparison-section {
        display: none;
    }
}

