:root {
    --yjq-emerald-primary: #10b981;
    --yjq-emerald-secondary: #059669;
    --yjq-emerald-accent: #34d399;
    --yjq-purple-primary: #8b5cf6;
    --yjq-purple-secondary: #7c3aed;
    --yjq-blue-primary: #3b82f6;
    --yjq-blue-secondary: #2563eb;
    --yjq-dark-bg: #0f172a;
    --yjq-darker-bg: #020617;
    --yjq-light-text: #f8fafc;
    --yjq-muted-text: #cbd5e1;
    --yjq-card-bg: #1e293b;
    --yjq-card-hover: #334155;
    --yjq-border-color: #374151;
    --yjq-success: #22c55e;
    --yjq-warning: #eab308;
    --yjq-error: #ef4444;
}

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

body {
    font-family: 'Public Sans', sans-serif;
    background: linear-gradient(135deg, var(--yjq-darker-bg) 0%, var(--yjq-dark-bg) 100%);
    color: var(--yjq-light-text);
    line-height: 1.6;
}

.yjq-header-wrapper {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--yjq-border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.yjq-header-disclaimer {
    background: linear-gradient(90deg, var(--yjq-emerald-primary), var(--yjq-blue-primary));
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.yjq-header-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.yjq-header-brand img {
    width: 80px;
    height: 80px;
}

.yjq-header-brand p {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    color: var(--yjq-light-text);
}

.yjq-header-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

.yjq-header-link, .yjq-contact-trigger {
    color: var(--yjq-light-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.yjq-header-link:hover, .yjq-contact-trigger:hover {
    color: var(--yjq-emerald-accent);
}

.yjq-header-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--yjq-light-text);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .yjq-header-navigation {
        padding: 1rem;
    }
    
    .yjq-header-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .yjq-header-brand p {
        display: none;
    }
    
    .yjq-header-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--yjq-dark-bg);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid var(--yjq-border-color);
    }
    
    .yjq-header-menu.active {
        display: flex;
    }
    
    .yjq-header-toggle {
        display: block;
    }
    
    .yjq-header-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .yjq-header-brand {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .yjq-header-disclaimer {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .yjq-header-navigation {
        padding: 0.5rem;
    }
}

.yjq-welcome-section {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('/yjq-core/yjq-images/welcome-background.webp');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 12rem 2rem 4rem;
}

.yjq-welcome-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.yjq-welcome-content h1 {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--yjq-emerald-primary), var(--yjq-blue-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yjq-welcome-content > p {
    font-size: 1.25rem;
    color: var(--yjq-muted-text);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.yjq-welcome-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.yjq-welcome-card {
    background: var(--yjq-card-bg);
    border-radius: 1rem;
    padding: 2rem;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    border: 1px solid var(--yjq-border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.yjq-welcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.1), transparent);
    transition: left 0.5s ease;
}

.yjq-welcome-card:hover::before {
    left: 100%;
}

.yjq-welcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.yjq-welcome-card i {
    font-size: 3rem;
    color: var(--yjq-emerald-accent);
    margin-bottom: 1.5rem;
}

.yjq-welcome-text h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--yjq-light-text);
    min-height: 78px;
}

.yjq-welcome-text p {
    color: var(--yjq-muted-text);
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.yjq-welcome-action {
    color: var(--yjq-emerald-accent);
    text-decoration: none;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.yjq-welcome-action:hover {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .yjq-welcome-content h1 {
        font-size: 3rem;
    }
    
    .yjq-welcome-cards {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .yjq-welcome-section {
        padding: 13rem 1rem 2rem;
    }
    
    .yjq-welcome-content h1 {
        font-size: 2.5rem;
    }
    
    .yjq-welcome-content > p {
        font-size: 1.1rem;
    }
    
    .yjq-welcome-card {
        min-width: 200px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .yjq-welcome-section {
        padding: 13rem 0.5rem 1rem;
    }
    
    .yjq-welcome-content h1 {
        font-size: 2rem;
    }
    
    .yjq-welcome-content > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .yjq-welcome-cards {
        gap: 0.8rem;
    }
    
    .yjq-welcome-card {
        padding: 1rem;
        min-width: 160px;
    }
    
    .yjq-welcome-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .yjq-welcome-text h3 {
        font-size: 1.2rem;
    }
}

.yjq-about-section {
    padding: 6rem 2rem;
    background: var(--yjq-dark-bg);
}

.yjq-about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.yjq-about-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.yjq-about-main img {
    width: 410px;
    height: 410px;
    border-radius: 1rem;
    flex-shrink: 0;
}

.yjq-about-story {
    width: 100%;
    max-width: 920px;
}

.yjq-about-story h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--yjq-light-text);
}

.yjq-about-story > p {
    color: var(--yjq-muted-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.yjq-about-highlights {
    display: flex;
    gap: 2rem;
}

.yjq-about-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--yjq-emerald-accent);
}

.yjq-about-item i {
    font-size: 1.5rem;
}

.yjq-about-cards {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.yjq-about-card {
    background: var(--yjq-card-bg);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    flex: 1;
    border: 1px solid var(--yjq-border-color);
    transition: transform 0.3s ease;
}

.yjq-about-card:hover {
    transform: translateY(-5px);
}

.yjq-about-card i {
    font-size: 2.5rem;
    color: var(--yjq-emerald-accent);
    margin-bottom: 1rem;
}

.yjq-about-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--yjq-light-text);
}

.yjq-about-card p {
    color: var(--yjq-muted-text);
    min-height: 80px;
}

.yjq-about-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--yjq-emerald-primary), var(--yjq-blue-primary));
    color: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
    text-align: center;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.yjq-about-cta:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .yjq-about-main {
        gap: 2rem;
    }
    
    .yjq-about-main img {
        width: 400px;
        height: 400px;
    }
    
    .yjq-about-story h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .yjq-about-section {
        padding: 4rem 1rem;
    }
    
    .yjq-about-main {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .yjq-about-main img {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }
    
    .yjq-about-highlights {
        justify-content: center;
    }
    
    .yjq-about-cards {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .yjq-about-section {
        padding: 3rem 0.5rem;
    }
    
    .yjq-about-story h2 {
        font-size: 1.8rem;
    }
    
    .yjq-about-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .yjq-about-card {
        padding: 1.5rem;
    }
    
    .yjq-about-cta {
        padding: 0.8rem 1.5rem;
    }
}

.yjq-features-section {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('/yjq-core/yjq-images/features-background.webp');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
}

.yjq-features-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.yjq-features-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--yjq-light-text);
}

.yjq-features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.yjq-feature-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--yjq-card-bg);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid var(--yjq-border-color);
    transition: transform 0.3s ease;
}

.yjq-feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

.yjq-feature-item:hover {
    transform: translateX(10px);
}

.yjq-feature-item:nth-child(even):hover {
    transform: translateX(-10px);
}

.yjq-feature-icon {
    flex-shrink: 0;
}

.yjq-feature-icon i {
    font-size: 4rem;
    color: var(--yjq-emerald-accent);
}

.yjq-feature-details h3 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--yjq-light-text);
}

.yjq-feature-details p {
    color: var(--yjq-muted-text);
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .yjq-features-content h2 {
        font-size: 2.5rem;
    }
    
    .yjq-feature-item {
        padding: 2rem;
        gap: 2rem;
    }
    
    .yjq-feature-icon i {
        font-size: 3rem;
    }
    
    .yjq-feature-details h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .yjq-features-section {
        padding: 4rem 1rem;
    }
    
    .yjq-features-content h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .yjq-feature-item, .yjq-feature-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .yjq-feature-item:hover, .yjq-feature-item:nth-child(even):hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .yjq-features-section {
        padding: 3rem 0.5rem;
    }
    
    .yjq-features-content h2 {
        font-size: 1.8rem;
    }
    
    .yjq-feature-item {
        padding: 1.5rem;
    }
    
    .yjq-feature-details h3 {
        font-size: 1.5rem;
    }
    
    .yjq-feature-details p {
        font-size: 1rem;
    }
}

.yjq-games-section {
    padding: 6rem 2rem;
    background: var(--yjq-dark-bg);
}

.yjq-games-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--yjq-light-text);
}

.yjq-games-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.yjq-game-card {
    background: var(--yjq-card-bg);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--yjq-border-color);
    transition: transform 0.3s ease;
    position: relative;
    flex: 1;
    max-width: 380px;
}

.yjq-game-card:hover {
    transform: translateY(-10px);
}

.yjq-game-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--yjq-purple-primary), var(--yjq-blue-primary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: bold;
    z-index: 2;
}

.yjq-game-visual {
    position: relative;
    overflow: hidden;
}

.yjq-game-visual img {
    width: 100%;
    height: 180px;
    transition: transform 0.3s ease;
}

.yjq-game-card:hover .yjq-game-visual img {
    transform: scale(1.1);
}

.yjq-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.yjq-game-card:hover .yjq-game-overlay {
    opacity: 1;
}

.yjq-game-overlay i {
    font-size: 3rem;
    color: var(--yjq-emerald-accent);
}

.yjq-game-info {
    padding: 1.5rem;
}

.yjq-game-info h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--yjq-light-text);
    min-height: 78px;
}

.yjq-game-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--yjq-muted-text);
    margin-bottom: 1.5rem;
}

.yjq-game-stats i {
    color: var(--yjq-emerald-accent);
}

.yjq-game-link {
    display: inline-block;
    background: var(--yjq-emerald-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: background 0.3s ease;
    text-align: center;
    width: 100%;
}

.yjq-game-link:hover {
    background: var(--yjq-emerald-secondary);
}

@media (max-width: 1024px) {
    .yjq-games-container {
        gap: 1.5rem;
    }
    
    .yjq-games-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .yjq-games-section {
        padding: 4rem 1rem;
    }
    
    .yjq-games-section h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .yjq-games-container {
        flex-direction: column;
        align-items: center;
    }
    
    .yjq-game-card {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .yjq-games-section {
        padding: 3rem 0.5rem;
    }
    
    .yjq-games-section h2 {
        font-size: 1.8rem;
    }
    
    .yjq-game-info {
        padding: 1rem;
    }
    
    .yjq-game-info h3 {
        font-size: 1.3rem;
    }
}

.yjq-free-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--yjq-darker-bg) 0%, var(--yjq-dark-bg) 50%, var(--yjq-darker-bg) 100%);
}

.yjq-free-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.yjq-free-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--yjq-light-text);
}

.yjq-free-content > p {
    color: var(--yjq-muted-text);
    font-size: 1.25rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.yjq-free-grid {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.yjq-free-item {
    background: var(--yjq-card-bg);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--yjq-border-color);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 220px;
    max-width: 250px;
    position: relative;
    overflow: hidden;
}

.yjq-free-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--yjq-emerald-primary), var(--yjq-blue-primary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.yjq-free-item:hover::before {
    transform: scaleX(1);
}

.yjq-free-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.yjq-free-item i {
    font-size: 3rem;
    color: var(--yjq-emerald-accent);
    margin-bottom: 1.5rem;
}

.yjq-free-item h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--yjq-light-text);
    min-height: 78px;
}

.yjq-free-item p {
    color: var(--yjq-muted-text);
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.yjq-free-action {
    color: var(--yjq-emerald-accent);
    text-decoration: none;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.yjq-free-action:hover {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .yjq-free-content h2 {
        font-size: 2.5rem;
    }
    
    .yjq-free-grid {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .yjq-free-section {
        padding: 4rem 1rem;
    }
    
    .yjq-free-content h2 {
        font-size: 2rem;
    }
    
    .yjq-free-content > p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .yjq-free-item {
        padding: 2rem 1.5rem;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .yjq-free-section {
        padding: 3rem 0.5rem;
    }
    
    .yjq-free-content h2 {
        font-size: 1.8rem;
    }
    
    .yjq-free-content > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .yjq-free-grid {
        gap: 0.8rem;
    }
    
    .yjq-free-item {
        padding: 1.5rem 1rem;
        min-width: 160px;
    }
    
    .yjq-free-item i {
        font-size: 2.5rem;
    }
    
    .yjq-free-item h3 {
        font-size: 1.3rem;
    }
}

.yjq-subscribe-section {
    padding: 6rem 2rem;
    background: var(--yjq-dark-bg);
    position: relative;
}

.yjq-subscribe-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.yjq-subscribe-info {
    flex: 1;
}

.yjq-subscribe-info h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--yjq-light-text);
}

.yjq-subscribe-info > p {
    color: var(--yjq-muted-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.yjq-subscribe-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.yjq-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--yjq-muted-text);
}

.yjq-benefit-item i {
    color: var(--yjq-emerald-accent);
    font-size: 1.25rem;
}

.yjq-subscribe-form-container {
    flex: 1;
    background: var(--yjq-card-bg);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--yjq-border-color);
}

.yjq-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.yjq-form-group {
    display: flex;
    flex-direction: column;
}

.yjq-form-group input {
    padding: 1rem;
    border: 2px solid var(--yjq-border-color);
    border-radius: 0.75rem;
    background: var(--yjq-dark-bg);
    color: var(--yjq-light-text);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.yjq-form-group input:focus {
    outline: none;
    border-color: var(--yjq-emerald-accent);
}

.yjq-form-hint {
    color: var(--yjq-error);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 20px;
}

.yjq-checkbox-label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    color: var(--yjq-muted-text);
    cursor: pointer;
}

.yjq-checkbox-label a {
    color: var(--yjq-emerald-accent);
    text-decoration: none;
}

.yjq-checkbox-label a:hover {
    text-decoration: underline;
}

.yjq-checkbox-custom {
    position: relative;
    left: -28px;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--yjq-border-color);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.yjq-checkbox-label input:checked + .yjq-checkbox-custom {
    background: var(--yjq-emerald-accent);
    border-color: var(--yjq-emerald-accent);
}

.yjq-checkbox-label input:checked + .yjq-checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 0.875rem;
}

.yjq-submit-button {
    background: var(--yjq-border-color);
    color: var(--yjq-muted-text);
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    font-size: 1.1rem;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

.yjq-submit-button:enabled {
    background: linear-gradient(135deg, var(--yjq-emerald-primary), var(--yjq-blue-primary));
    color: white;
    cursor: pointer;
}

.yjq-submit-button:enabled:hover {
    transform: scale(1.05);
}

.yjq-success-message {
    text-align: center;
    padding: 2rem;
    display: none;
}

.yjq-success-message i {
    font-size: 4rem;
    color: var(--yjq-success);
    margin-bottom: 1rem;
}

.yjq-success-message h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--yjq-light-text);
}

.yjq-success-message p {
    color: var(--yjq-muted-text);
    margin-bottom: 2rem;
}

.yjq-success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.yjq-success-actions button {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--yjq-border-color);
    background: transparent;
    color: var(--yjq-light-text);
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yjq-success-actions button:hover {
    background: var(--yjq-emerald-accent);
    border-color: var(--yjq-emerald-accent);
}

.yjq-subscribe-graphic {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    opacity: 0.1;
    pointer-events: none;
}

.yjq-graphic-element {
    width: 170px;
    height: 170px;
    background: conic-gradient(from 0deg, var(--yjq-emerald-primary), var(--yjq-blue-primary), var(--yjq-purple-primary), var(--yjq-emerald-primary));
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
    .yjq-subscribe-container {
        gap: 3rem;
    }
    
    .yjq-subscribe-info h2 {
        font-size: 2rem;
    }
    
    .yjq-subscribe-graphic {
        right: 5%;
    }
}

@media (max-width: 768px) {
    .yjq-subscribe-section {
        padding: 4rem 1rem;
    }
    
    .yjq-subscribe-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .yjq-subscribe-info {
        text-align: center;
    }
    
    .yjq-subscribe-benefits {
        align-items: center;
    }
    
    .yjq-subscribe-graphic {
        display: none;
    }
}

@media (max-width: 480px) {
    .yjq-subscribe-section {
        padding: 3rem 0.5rem;
    }
    
    .yjq-subscribe-info h2 {
        font-size: 1.8rem;
    }
    
    .yjq-subscribe-form-container {
        padding: 1.5rem;
    }
    
    .yjq-success-actions {
        flex-direction: column;
    }
}

.yjq-faq-section {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('/yjq-core/yjq-images/faq-background.webp');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
}

.yjq-faq-content {
    max-width: 1400px;
    margin: 0 auto;
}

.yjq-faq-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--yjq-light-text);
}

.yjq-faq-blocks {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.yjq-faq-block {
    flex: 1;
}

.yjq-faq-block h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--yjq-emerald-accent);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--yjq-border-color);
}

.yjq-faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--yjq-border-color);
    border-radius: 0.75rem;
    overflow: hidden;
}

.yjq-faq-question {
    padding: 1.5rem;
    background: var(--yjq-card-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.yjq-faq-question:hover {
    background: var(--yjq-card-hover);
}

.yjq-faq-question span {
    color: var(--yjq-light-text);
    font-weight: bold;
    flex: 1;
}

.yjq-faq-question i {
    color: var(--yjq-emerald-accent);
    transition: transform 0.3s ease;
}

.yjq-faq-item.active .yjq-faq-question i {
    transform: rotate(180deg);
}

.yjq-faq-answer {
    padding: 0;
    background: var(--yjq-darker-bg);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.yjq-faq-item.active .yjq-faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.yjq-faq-answer p {
    color: var(--yjq-muted-text);
    line-height: 1.7;
}

.yjq-contact-faq-trigger {
    display: block;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--yjq-emerald-primary), var(--yjq-blue-primary));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.yjq-contact-faq-trigger:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .yjq-faq-content h2 {
        font-size: 2.5rem;
    }
    
    .yjq-faq-blocks {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .yjq-faq-section {
        padding: 4rem 1rem;
    }
    
    .yjq-faq-content h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .yjq-faq-blocks {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .yjq-faq-section {
        padding: 3rem 0.5rem;
    }
    
    .yjq-faq-content h2 {
        font-size: 1.8rem;
    }
    
    .yjq-faq-question {
        padding: 1rem;
    }
    
    .yjq-faq-item.active .yjq-faq-answer {
        padding: 1rem;
    }
    
    .yjq-contact-faq-trigger {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

.yjq-reviews-section {
    padding: 6rem 2rem;
    background: var(--yjq-dark-bg);
}

.yjq-reviews-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--yjq-light-text);
}

.yjq-reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.yjq-review-card {
    background: var(--yjq-card-bg);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--yjq-border-color);
    transition: transform 0.3s ease;
    position: relative;
}

.yjq-review-card:hover {
    transform: translateY(-5px);
}

.yjq-review-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.yjq-review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.yjq-review-meta {
    flex: 1;
}

.yjq-review-name {
    display: block;
    font-weight: bold;
    color: var(--yjq-light-text);
    margin-bottom: 0.25rem;
}

.yjq-review-location {
    display: block;
    color: var(--yjq-muted-text);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.yjq-review-rating {
    display: flex;
    gap: 0.25rem;
}

.yjq-review-rating i {
    color: var(--yjq-warning);
    font-size: 1rem;
}

.yjq-review-header > i {
    color: var(--yjq-emerald-accent);
    font-size: 1.5rem;
    opacity: 0.7;
}

.yjq-review-text {
    color: var(--yjq-muted-text);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
    min-height: 80px;
}

.yjq-review-date {
    color: var(--yjq-border-color);
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .yjq-reviews-section h2 {
        font-size: 2.5rem;
    }
    
    .yjq-reviews-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .yjq-reviews-section {
        padding: 4rem 1rem;
    }
    
    .yjq-reviews-section h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .yjq-reviews-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .yjq-reviews-section {
        padding: 3rem 0.5rem;
    }
    
    .yjq-reviews-section h2 {
        font-size: 1.8rem;
    }
    
    .yjq-review-card {
        padding: 1.5rem;
    }
    
    .yjq-review-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .yjq-review-header img {
        align-self: center;
    }
}

.yjq-responsibility-section {
    padding: 6rem 2rem;
    background: var(--yjq-darker-bg);
}

.yjq-responsibility-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.yjq-responsibility-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--yjq-light-text);
}

.yjq-responsibility-text {
    text-align: left;
    margin-bottom: 3rem;
}

.yjq-responsibility-text p {
    color: var(--yjq-muted-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.yjq-responsibility-text a {
    color: var(--yjq-emerald-accent);
    text-decoration: none;
}

.yjq-responsibility-text a:hover {
    text-decoration: underline;
}

.yjq-partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.yjq-partner-logos a, .yjq-partner-logos img {
    display: block;
    background: var(--yjq-emerald-primary);
    padding: 10px;
    border-radius: 20px;
}

.yjq-partner-logos img {
    width: 120px;
    height: 55px;
    object-fit: contain;
    filter: grayscale(70%);
    transition: filter 0.3s ease;
}

.yjq-partner-logos a:hover img {
    filter: grayscale(0%);
}

@media (max-width: 1024px) {
    .yjq-responsibility-content h2 {
        font-size: 2rem;
    }
    
    .yjq-partner-logos {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .yjq-responsibility-section {
        padding: 4rem 1rem;
    }
    
    .yjq-responsibility-text {
        text-align: center;
    }
    
    .yjq-partner-logos {
        gap: 1rem;
    }
    
    .yjq-partner-logos img {
        width: 100px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .yjq-responsibility-section {
        padding: 3rem 0.5rem;
    }
    
    .yjq-responsibility-content h2 {
        font-size: 1.8rem;
    }
    
    .yjq-responsibility-link {
        padding: 0.8rem 1.5rem;
    }
    
    .yjq-partner-logos {
        gap: 0.8rem;
    }
    
    .yjq-partner-logos img {
        width: 80px;
        height: 40px;
    }
}

.yjq-footer-wrapper {
    background: linear-gradient(rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.95)), url('/yjq-core/yjq-images/footer-background.webp');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem 2rem;
}

.yjq-footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.yjq-footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--yjq-border-color);
}

.yjq-footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.yjq-footer-brand img {
    width: 80px;
    height: 80px;
}

.yjq-footer-brand p {
    font-family: 'Merriweather', serif;
    font-size: 1.25rem;
    color: var(--yjq-light-text);
}

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

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

.yjq-footer-column h4 {
    font-family: 'Merriweather', serif;
    color: var(--yjq-light-text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.yjq-footer-column a, .yjq-contact-footer-trigger {
    color: var(--yjq-muted-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
}

.yjq-footer-column a:hover, .yjq-contact-footer-trigger:hover {
    color: var(--yjq-emerald-accent);
}

.yjq-footer-bottom {
    text-align: center;
    color: var(--yjq-muted-text);
    padding-top: 2rem;
}

@media (max-width: 1024px) {
    .yjq-footer-links {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .yjq-footer-wrapper {
        padding: 3rem 1rem 1rem;
    }
    
    .yjq-footer-main {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .yjq-footer-brand {
        justify-content: center;
    }
    
    .yjq-footer-links {
        width: 100%;
        justify-content: center;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .yjq-footer-wrapper {
        padding: 2rem 0.5rem 1rem;
    }
    
    .yjq-footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .yjq-footer-column {
        align-items: center;
    }
    
    .yjq-footer-brand p {
        font-size: 1.1rem;
    }
}

.yjq-cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--yjq-card-bg);
    border-top: 1px solid var(--yjq-border-color);
    padding: 1.5rem 2rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.yjq-cookie-consent-bar.active {
    transform: translateY(0);
}

.yjq-cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.yjq-cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.yjq-cookie-text i {
    font-size: 1.5rem;
    color: var(--yjq-emerald-accent);
    flex-shrink: 0;
}

.yjq-cookie-text p {
    color: var(--yjq-muted-text);
    margin: 0;
}

.yjq-cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.yjq-cookie-learn {
    color: var(--yjq-emerald-accent);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--yjq-emerald-accent);
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.yjq-cookie-learn:hover {
    background: var(--yjq-emerald-accent);
    color: white;
}

.yjq-cookie-accept {
    background: var(--yjq-emerald-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.yjq-cookie-accept:hover {
    background: var(--yjq-emerald-secondary);
}

@media (max-width: 768px) {
    .yjq-cookie-consent-bar {
        padding: 1rem;
    }
    
    .yjq-cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .yjq-cookie-text {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .yjq-cookie-consent-bar {
        padding: 0.8rem;
    }
    
    .yjq-cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .yjq-cookie-learn, .yjq-cookie-accept {
        text-align: center;
    }
}

.yjq-age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    backdrop-filter: blur(10px);
}

.yjq-age-confirmation-dialog {
    background: var(--yjq-card-bg);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 1px solid var(--yjq-border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.yjq-age-header {
    margin-bottom: 2rem;
}

.yjq-age-header i {
    font-size: 4rem;
    color: var(--yjq-emerald-accent);
    margin-bottom: 1rem;
}

.yjq-age-header h3 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    color: var(--yjq-light-text);
}

.yjq-age-content p {
    color: var(--yjq-muted-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.yjq-age-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.yjq-age-confirm {
    background: linear-gradient(135deg, var(--yjq-emerald-primary), var(--yjq-blue-primary));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.yjq-age-confirm:hover {
    transform: scale(1.05);
}

.yjq-age-deny {
    background: transparent;
    color: var(--yjq-muted-text);
    padding: 1rem 2rem;
    border: 1px solid var(--yjq-border-color);
    border-radius: 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yjq-age-deny:hover {
    background: var(--yjq-border-color);
    color: var(--yjq-light-text);
}

@media (max-width: 480px) {
    .yjq-age-confirmation-dialog {
        padding: 2rem;
    }
    
    .yjq-age-header h3 {
        font-size: 1.5rem;
    }
    
    .yjq-age-actions {
        flex-direction: column;
    }
}

.yjq-contact-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1003;
    padding: 2rem;
}

.yjq-contact-form-overlay.active {
    display: flex;
}

.yjq-feedback-modal-window {
    background: var(--yjq-card-bg);
    border-radius: 1.5rem;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--yjq-border-color);
    position: relative;
    scrollbar-width: none;
}

.yjq-feedback-modal-window::-webkit-scrollbar {
    display: none;
}

.yjq-contact-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--yjq-muted-text);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
}

.yjq-contact-close:hover {
    color: var(--yjq-light-text);
}

.yjq-contact-container {
    display: flex;
    min-height: 600px;
}

.yjq-contact-form-section {
    flex: 1;
    padding: 3rem;
    border-right: 1px solid var(--yjq-border-color);
}

.yjq-contact-form-section h3 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--yjq-light-text);
}

.yjq-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.yjq-contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--yjq-border-color);
    border-radius: 0.75rem;
    background: var(--yjq-dark-bg);
    color: var(--yjq-light-text);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    min-height: 120px;
    resize: vertical;
    font-family: 'Public Sans', sans-serif;
}

.yjq-contact-form textarea:focus {
    outline: none;
    border-color: var(--yjq-emerald-accent);
}

.yjq-contact-submit {
    background: var(--yjq-border-color);
    color: var(--yjq-muted-text);
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    font-size: 1.1rem;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

.yjq-contact-submit:enabled {
    background: linear-gradient(135deg, var(--yjq-emerald-primary), var(--yjq-blue-primary));
    color: white;
    cursor: pointer;
}

.yjq-contact-submit:enabled:hover {
    transform: scale(1.05);
}

.yjq-contact-success {
    text-align: center;
    padding: 2rem;
    display: none;
}

.yjq-contact-success i {
    font-size: 3rem;
    color: var(--yjq-success);
    margin-bottom: 1rem;
}

.yjq-contact-success h4 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--yjq-light-text);
}

.yjq-contact-success p {
    color: var(--yjq-muted-text);
}

.yjq-contact-info-section {
    flex: 1;
    padding: 3rem;
    background: var(--yjq-dark-bg);
}

.yjq-contact-info-section h4 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--yjq-light-text);
}

.yjq-contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.yjq-contact-card {
    background: var(--yjq-card-bg);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--yjq-border-color);
    text-align: center;
}

.yjq-contact-card i {
    font-size: 2rem;
    color: var(--yjq-emerald-accent);
    margin-bottom: 1rem;
}

.yjq-contact-card h5 {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--yjq-light-text);
}

.yjq-contact-card p {
    color: var(--yjq-muted-text);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .yjq-contact-container {
        flex-direction: column;
    }
    
    .yjq-contact-form-section {
        border-right: none;
        border-bottom: 1px solid var(--yjq-border-color);
    }
    
    .yjq-contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .yjq-contact-form-overlay {
        padding: 1rem;
    }
    
    .yjq-contact-form-section, .yjq-contact-info-section {
        padding: 2rem 1.5rem;
    }
    
    .yjq-contact-form-section h3 {
        font-size: 1.5rem;
    }
}

.yjqpgs-privacy-container {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
}

.yjqpgs-privacy-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('/yjq-core/yjq-images/faq-background.webp');
    background-size: cover;
    background-position: center;
    padding: 12rem 2rem 4rem;
    text-align: center;
}

.yjqpgs-privacy-content i {
    font-size: 4rem;
    color: #34d399;
    margin-bottom: 2rem;
}

.yjqpgs-privacy-content h1 {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yjqpgs-privacy-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.yjqpgs-privacy-sections {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.yjqpgs-privacy-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.yjqpgs-privacy-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: #1e293b;
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid #374151;
    transition: transform 0.3s ease;
}

.yjqpgs-privacy-card:nth-child(even) {
    flex-direction: row-reverse;
}

.yjqpgs-privacy-card:hover {
    transform: translateX(10px);
}

.yjqpgs-privacy-card:nth-child(even):hover {
    transform: translateX(-10px);
}

.yjqpgs-privacy-icon {
    flex-shrink: 0;
}

.yjqpgs-privacy-icon i {
    font-size: 4rem;
    color: #34d399;
}

.yjqpgs-privacy-text {
    flex: 1;
}

.yjqpgs-privacy-text h2 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    color: #f8fafc;
    margin-bottom: 1.5rem;
}

.yjqpgs-privacy-text p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1.1rem;
}

.yjqpgs-privacy-text a {
    color: #34d399;
    text-decoration: none;
    font-weight: 600;
}

.yjqpgs-privacy-text a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .yjqpgs-privacy-content h1 {
        font-size: 2.5rem;
    }
    
    .yjqpgs-privacy-card {
        gap: 2rem;
        padding: 2.5rem;
    }
    
    .yjqpgs-privacy-text h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .yjqpgs-privacy-hero {
        padding: 13rem 1.5rem 3rem;
    }
    
    .yjqpgs-privacy-content h1 {
        font-size: 2rem;
    }
    
    .yjqpgs-privacy-content p {
        font-size: 1.1rem;
    }
    
    .yjqpgs-privacy-sections {
        padding: 3rem 1.5rem;
    }
    
    .yjqpgs-privacy-card,
    .yjqpgs-privacy-card:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .yjqpgs-privacy-card:hover,
    .yjqpgs-privacy-card:nth-child(even):hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .yjqpgs-privacy-hero {
        padding: 13rem 0.5rem 2rem;
    }
    
    .yjqpgs-privacy-content h1 {
        font-size: 1.8rem;
    }
    
    .yjqpgs-privacy-content p {
        font-size: 1rem;
    }
    
    .yjqpgs-privacy-content i {
        font-size: 3rem;
    }
    
    .yjqpgs-privacy-sections {
        padding: 2rem 0.5rem;
    }
    
    .yjqpgs-privacy-card {
        padding: 1.5rem;
    }
    
    .yjqpgs-privacy-text h2 {
        font-size: 1.5rem;
    }
    
    .yjqpgs-privacy-text p {
        font-size: 0.9rem;
    }
    
    .yjqpgs-privacy-text a {
        font-size: 0.8rem;
    }
    
    .yjqpgs-privacy-icon i {
        font-size: 3rem;
    }
}

.yjqpgs-terms-container {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
}

.yjqpgs-terms-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('/yjq-core/yjq-images/welcome-background.webp');
    background-size: cover;
    background-position: center;
    padding: 12rem 2rem 4rem;
    text-align: center;
}

.yjqpgs-terms-content i {
    font-size: 4rem;
    color: #3b82f6;
    margin-bottom: 2rem;
}

.yjqpgs-terms-content h1 {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yjqpgs-terms-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.yjqpgs-terms-sections {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.yjqpgs-terms-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.yjqpgs-terms-article {
    background: #1e293b;
    border-radius: 1.5rem;
    border: 1px solid #374151;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yjqpgs-terms-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.yjqpgs-terms-header {
    background: linear-gradient(135deg, #1e40af, #3730a3);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.yjqpgs-terms-header i {
    font-size: 2.5rem;
    color: #f8fafc;
}

.yjqpgs-terms-header h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.75rem;
    color: #f8fafc;
    margin: 0;
}

.yjqpgs-terms-body {
    padding: 2.5rem;
}

.yjqpgs-terms-body p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.yjqpgs-terms-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.yjqpgs-terms-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #34d399;
}

.yjqpgs-terms-point i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.yjqpgs-terms-point span {
    color: #cbd5e1;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .yjqpgs-terms-content h1 {
        font-size: 2.5rem;
    }
    
    .yjqpgs-terms-header {
        padding: 1.5rem;
    }
    
    .yjqpgs-terms-body {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .yjqpgs-terms-hero {
        padding: 13rem 1.5rem 3rem;
    }
    
    .yjqpgs-terms-content h1 {
        font-size: 2rem;
    }
    
    .yjqpgs-terms-content p {
        font-size: 1.1rem;
    }
    
    .yjqpgs-terms-sections {
        padding: 3rem 1.5rem;
    }
    
    .yjqpgs-terms-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .yjqpgs-terms-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .yjqpgs-terms-hero {
        padding: 13rem 0.5rem 2rem;
    }
    
    .yjqpgs-terms-content h1 {
        font-size: 1.8rem;
    }
    
    .yjqpgs-terms-content p {
        font-size: 1rem;
    }
    
    .yjqpgs-terms-content i {
        font-size: 3rem;
    }
    
    .yjqpgs-terms-sections {
        padding: 2rem 0.5rem;
    }
    
    .yjqpgs-terms-header {
        padding: 1rem;
    }
    
    .yjqpgs-terms-header i {
        font-size: 2rem;
    }
    
    .yjqpgs-terms-header h2 {
        font-size: 1.3rem;
    }
    
    .yjqpgs-terms-body {
        padding: 1.5rem;
    }
    
    .yjqpgs-terms-body p {
        font-size: 0.9rem;
    }
    
    .yjqpgs-terms-point span {
        font-size: 0.8rem;
    }
}

.yjqpgs-cookie-container {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
}

.yjqpgs-cookie-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('/yjq-core/yjq-images/features-background.webp');
    background-size: cover;
    background-position: center;
    padding: 12rem 2rem 4rem;
    text-align: center;
}

.yjqpgs-cookie-content i {
    font-size: 4rem;
    color: #8b5cf6;
    margin-bottom: 2rem;
}

.yjqpgs-cookie-content h1 {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yjqpgs-cookie-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.yjqpgs-cookie-sections {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.yjqpgs-cookie-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.yjqpgs-cookie-tile {
    background: #1e293b;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid #374151;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.yjqpgs-cookie-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.yjqpgs-cookie-tile:hover::before {
    transform: scaleX(1);
}

.yjqpgs-cookie-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.yjqpgs-cookie-tile-icon {
    margin-bottom: 1.5rem;
}

.yjqpgs-cookie-tile-icon i {
    font-size: 3rem;
    color: #8b5cf6;
}

.yjqpgs-cookie-tile h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.yjqpgs-cookie-tile p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.yjqpgs-cookie-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #34d399;
    font-size: 0.9rem;
}

.yjqpgs-cookie-duration i {
    font-size: 1.25rem;
}

.yjqpgs-cookie-tile a {
    color: #34d399;
    text-decoration: none;
    font-weight: 600;
}

.yjqpgs-cookie-tile a:hover {
    text-decoration: underline;
}

.yjqpgs-cookie-controls {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.yjqpgs-cookie-controls-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.yjqpgs-cookie-controls-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.yjqpgs-cookie-controls-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.yjqpgs-cookie-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.yjqpgs-cookie-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.yjqpgs-cookie-accept {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.yjqpgs-cookie-customize {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.yjqpgs-cookie-reject {
    background: transparent;
    color: #cbd5e1;
    border: 2px solid #374151;
}

.yjqpgs-cookie-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .yjqpgs-cookie-content h1 {
        font-size: 2.5rem;
    }
    
    .yjqpgs-cookie-mosaic {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .yjqpgs-cookie-controls-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .yjqpgs-cookie-hero {
        padding: 13rem 1.5rem 3rem;
    }
    
    .yjqpgs-cookie-content h1 {
        font-size: 2rem;
    }
    
    .yjqpgs-cookie-content p {
        font-size: 1.1rem;
    }
    
    .yjqpgs-cookie-sections {
        padding: 3rem 1.5rem;
    }
    
    .yjqpgs-cookie-controls {
        padding: 3rem 1.5rem;
    }
    
    .yjqpgs-cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .yjqpgs-cookie-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .yjqpgs-cookie-hero {
        padding: 13rem 0.5rem 2rem;
    }
    
    .yjqpgs-cookie-content h1 {
        font-size: 1.8rem;
    }
    
    .yjqpgs-cookie-content p {
        font-size: 1rem;
    }
    
    .yjqpgs-cookie-content i {
        font-size: 3rem;
    }
    
    .yjqpgs-cookie-sections {
        padding: 2rem 0.5rem;
    }
    
    .yjqpgs-cookie-mosaic {
        grid-template-columns: 1fr;
    }
    
    .yjqpgs-cookie-tile {
        padding: 1.5rem;
    }
    
    .yjqpgs-cookie-tile h3 {
        font-size: 1.3rem;
    }
    
    .yjqpgs-cookie-tile p {
        font-size: 0.9rem;
    }
    
    .yjqpgs-cookie-tile a {
        font-size: 0.8rem;
    }
    
    .yjqpgs-cookie-controls {
        padding: 2rem 0.5rem;
    }
    
    .yjqpgs-cookie-controls-content h2 {
        font-size: 1.5rem;
    }
    
    .yjqpgs-cookie-controls-content p {
        font-size: 0.9rem;
    }
    
    .yjqpgs-cookie-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

.yjqpgs-error-container {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.yjqpgs-error-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 12rem;
}

.yjqpgs-error-animation {
    position: relative;
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.yjqpgs-error-orb {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.yjqpgs-error-orb-1 {
    background: linear-gradient(135deg, #10b981, #34d399);
    top: 20%;
    left: 10%;
    animation-name: floatOrb1;
}

.yjqpgs-error-orb-2 {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    top: 60%;
    right: 10%;
    animation-name: floatOrb2;
    animation-delay: 1s;
}

.yjqpgs-error-orb-3 {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    bottom: 20%;
    left: 40%;
    animation-name: floatOrb3;
    animation-delay: 2s;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translateX(0px) scale(1); }
    50% { transform: translateX(15px) scale(1.1); }
}

@keyframes floatOrb3 {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
    33% { transform: translate(10px, -15px) rotate(120deg); }
    66% { transform: translate(-10px, 10px) rotate(240deg); }
}

.yjqpgs-error-text {
    flex: 1;
}

.yjqpgs-error-text h1 {
    font-family: 'Merriweather', serif;
    font-size: 4rem;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ec4899, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yjqpgs-error-text > p {
    font-size: 1.25rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.yjqpgs-error-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.yjqpgs-error-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #34d399;
}

.yjqpgs-error-feature i {
    font-size: 1.5rem;
}

.yjqpgs-error-feature span {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.yjqpgs-error-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yjqpgs-error-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.yjqpgs-error-suggestions {
    margin-top: 4rem;
    text-align: center;
    max-width: 800px;
}

.yjqpgs-error-suggestions h2 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    color: #f8fafc;
    margin-bottom: 2rem;
}

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

.yjqpgs-error-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: #1e293b;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid #374151;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #cbd5e1;
}

.yjqpgs-error-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    color: #34d399;
}

.yjqpgs-error-link i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.yjqpgs-error-link span {
    font-weight: 600;
    text-align: center;
}

@media (max-width: 1024px) {
    .yjqpgs-error-content {
        gap: 3rem;
    }
    
    .yjqpgs-error-text h1 {
        font-size: 3rem;
    }
    
    .yjqpgs-error-animation {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .yjqpgs-error-container {
        padding: 1.5rem;
    }
    
    .yjqpgs-error-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .yjqpgs-error-text h1 {
        font-size: 2.5rem;
    }
    
    .yjqpgs-error-text > p {
        font-size: 1.1rem;
    }
    
    .yjqpgs-error-features {
        align-items: center;
    }
    
    .yjqpgs-error-suggestions h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .yjqpgs-error-container {
        padding: 1rem 0.5rem;
    }
    
    .yjqpgs-error-text h1 {
        font-size: 2rem;
    }
    
    .yjqpgs-error-text > p {
        font-size: 1rem;
    }
    
    .yjqpgs-error-feature span {
        font-size: 0.9rem;
    }
    
    .yjqpgs-error-button {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    
    .yjqpgs-error-suggestions h2 {
        font-size: 1.5rem;
    }
    
    .yjqpgs-error-links {
        grid-template-columns: 1fr;
    }
    
    .yjqpgs-error-link {
        padding: 1.5rem 1rem;
    }
    
    .yjqpgs-error-animation {
        width: 200px;
        height: 200px;
    }
    
    .yjqpgs-error-orb {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}