:root {
    --ywm-primary-gradient: linear-gradient(135deg, #1a2a47 0%, #2c4a7a 50%, #3a6ea5 100%);
    --ywm-secondary-gradient: linear-gradient(135deg, #ff6b6b 0%, #ffa36b 50%, #ffd56b 100%);
    --ywm-accent-color: #4ecdc4;
    --ywm-text-light: #ffffff;
    --ywm-text-dark: #2d3748;
    --ywm-background-light: #f8fafc;
    --ywm-card-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --ywm-border-radius: 16px;
    --ywm-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--ywm-text-dark);
    background-color: var(--ywm-background-light);
    min-width: 285px;
}

.ywm_header-container {
    background: var(--ywm-primary-gradient);
    color: var(--ywm-text-light);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ywm_header-disclaimer {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem 1rem;
    text-align: center;
    font-size: 0.75rem;
}

.ywm_header-disclaimer p {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 2.5rem;
}

.ywm_header-disclaimer a {
    color: var(--ywm-accent-color);
    text-decoration: none;
}

.ywm_header-disclaimer a:hover {
    text-decoration: underline;
}

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

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

.ywm_header-link-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ywm-text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--ywm-transition);
    padding: 0.5rem 1rem;
    border-radius: var(--ywm-border-radius);
}

.ywm_header-link-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.ywm_header-brand {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ywm_header-logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--ywm-text-light);
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    transition: var(--ywm-transition);
}

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

.ywm_header-logo-link img {
    width: 80px;
    height: 80px;
    max-width: 80px;
    max-height: 80px;
}

.ywm_header-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ywm-text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--ywm-transition);
}

.ywm_header-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.ywm_header-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ywm-primary-gradient);
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.ywm_header-navigation.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ywm_mobile-brand {
    display: none;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.ywm_mobile-logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--ywm-text-light);
    font-family: 'Cinzel', serif;
}

.ywm_mobile-logo-link img {
    width: 60px;
    height: 60px;
    max-width: 60px;
    max-height: 60px;
}

.ywm_nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--ywm-text-light);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--ywm-border-radius);
    transition: var(--ywm-transition);
}

.ywm_nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .ywm_header-content {
        padding: 1rem;
    }
    
    .ywm_header-links {
        gap: 1rem;
    }
    
    .ywm_header-logo-link {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .ywm_header-links {
        display: none;
    }
    
    .ywm_header-menu-toggle {
        display: block;
    }
    
    .ywm_header-brand {
        justify-content: flex-start;
    }
    
    .ywm_mobile-brand {
        display: block;
    }
    
    .ywm_header-disclaimer {
        padding: 0.5rem 0.5rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .ywm_header-content {
        padding: 0.5rem;
    }
    
    .ywm_header-logo-link {
        font-size: 1rem;
    }
    
    .ywm_header-logo-link img {
        width: 60px;
        height: 60px;
        max-width: 60px;
        max-height: 60px;
    }
    
    .ywm_header-disclaimer {
        padding: 0.3rem 0.3rem;
    }
}

.ywm_welcome-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ywm-primary-gradient);
    overflow: hidden;
}

.ywm_rain-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 50%, rgba(74, 144, 226, 0.6) 100%);
    animation: ywm_rainEffect 3s linear infinite;
}

@keyframes ywm_rainEffect {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% 100%;
    }
}

.ywm_welcome-content {
    text-align: center;
    color: var(--ywm-text-light);
    padding: 2rem;
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.ywm_welcome-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: ywm_titleGlow 2s ease-in-out infinite alternate;
}

@keyframes ywm_titleGlow {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

.ywm_welcome-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    min-height: 3rem;
}

.ywm_welcome-disclaimer {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--ywm-border-radius);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.ywm_welcome-disclaimer i {
    font-size: 2rem;
    color: var(--ywm-accent-color);
    flex-shrink: 0;
}

.ywm_welcome-disclaimer p {
    text-align: left;
    font-size: 0.9rem;
    min-height: 4rem;
}

@media (max-width: 768px) {
    .ywm_welcome-content h1 {
        font-size: 2rem;
    }
    
    .ywm_welcome-subtitle {
        font-size: 1rem;
    }
    
    .ywm_welcome-disclaimer {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .ywm_welcome-disclaimer p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ywm_welcome-section {
        min-height: 70vh;
    }
    
    .ywm_welcome-content {
        padding: 1rem;
    }
    
    .ywm_welcome-content h1 {
        font-size: 1.75rem;
        animation: none;
    }
    
    .ywm_welcome-disclaimer {
        padding: 0.8rem;
    }
    
    .ywm_rain-animation {
        animation: none;
    }
}

.ywm_platforms-section {
    padding: 4rem 2rem;
    background: var(--ywm-background-light);
}

.ywm_section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ywm_section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--ywm-text-dark);
    margin-bottom: 1rem;
}

.ywm_section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    min-height: 2.5rem;
}

.ywm_platforms-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ywm_platform-card {
    background: rgb(199, 197, 197);
    border-radius: var(--ywm-border-radius);
    box-shadow: var(--ywm-card-shadow);
    padding: 2rem;
    transition: var(--ywm-transition);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ywm_platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ywm_platform-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.ywm_platform-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ywm_rating-score {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--ywm-text-dark);
}

.ywm_rating-stars {
    display: flex;
    gap: 0.2rem;
    color: #ffc107;
}

.ywm_platform-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--ywm-text-dark);
}

.ywm_platform-content > p {
    color: #666;
    margin-bottom: 1rem;
    min-height: 3rem;
}

.ywm_payment-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.ywm_payment-methods i {
    font-size: 1.5rem;
    color: #4a5568;
    transition: var(--ywm-transition);
}

.ywm_payment-methods i:hover {
    color: var(--ywm-accent-color);
    transform: scale(1.2);
}

.ywm_platform-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ywm-secondary-gradient);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--ywm-transition);
    align-self: flex-start;
}

.ywm_platform-link:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

@media (max-width: 768px) {
    .ywm_platforms-section {
        padding: 3rem 1rem;
    }
    
    .ywm_section-header h2 {
        font-size: 2rem;
    }
    
    .ywm_platform-card {
        padding: 1.5rem;
    }
    
    .ywm_platform-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .ywm_platforms-section {
        padding: 2rem 0.5rem;
    }
    
    .ywm_section-header h2 {
        font-size: 1.75rem;
    }
    
    .ywm_platform-card {
        padding: 1rem;
        transform: none;
    }
    
    .ywm_platform-card:hover {
        transform: none;
    }
    
    .ywm_platform-link:hover {
        transform: none;
    }
}

.ywm_criteria-section {
    padding: 4rem 2rem;
    background: var(--ywm-primary-gradient);
    color: var(--ywm-text-light);
}

.ywm_criteria-section .ywm_section-header h2 {
    color: var(--ywm-text-light);
}

.ywm_criteria-section .ywm_section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.ywm_criteria-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.ywm_criteria-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--ywm-border-radius);
    padding: 2rem;
    flex: 1 1 300px;
    max-width: 350px;
    transition: var(--ywm-transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.ywm_criteria-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
}

.ywm_criteria-icon {
    font-size: 3rem;
    color: var(--ywm-accent-color);
    margin-bottom: 1rem;
}

.ywm_criteria-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    min-height: 5rem;
}

.ywm_criteria-list {
    list-style: none;
    text-align: left;
}

.ywm_criteria-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
    min-height: 2.5rem;
}

.ywm_criteria-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ywm-accent-color);
    font-weight: bold;
}

.ywm_criteria-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .ywm_criteria-section {
        padding: 3rem 1rem;
    }
    
    .ywm_criteria-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .ywm_criteria-section {
        padding: 2rem 0.5rem;
    }
    
    .ywm_criteria-card {
        padding: 1.5rem;
        transform: none;
    }
    
    .ywm_criteria-card:hover {
        transform: none;
    }
}

.ywm_responsible-section {
    padding: 4rem 2rem;
    background: var(--ywm-background-light);
}

.ywm_responsible-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.ywm_responsible-text {
    flex: 1;
}

.ywm_responsible-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--ywm-text-dark);
    margin-bottom: 1.5rem;
}

.ywm_responsible-text > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
    min-height: 5rem;
}

.ywm_responsible-links {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1rem;
}

.ywm_responsible-links a {
    color: var(--ywm-accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--ywm-transition);
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
}

.ywm_responsible-links a:hover {
    border-bottom-color: var(--ywm-accent-color);
    padding-left: 0.5rem;
}

.ywm_partner-logos {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}

.ywm_partner-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgb(41, 40, 40);
    border-radius: 12px;
    box-shadow: var(--ywm-card-shadow);
    transition: var(--ywm-transition);
    height: 80px;
}

.ywm_partner-logos a:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.ywm_partner-logos img {
    width: 160px;
    height: 60px;
    max-width: 160px;
}

.ywm_age-restriction {
    grid-column: 1 / -1;
    font-size: 2rem;
    font-weight: bold;
    color: var(--ywm-accent-color);
    text-align: center;
    padding: 1rem;
    border: 3px solid var(--ywm-accent-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .ywm_responsible-content {
        flex-direction: column;
        text-align: center;
    }
    
    .ywm_partner-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ywm_responsible-section {
        padding: 3rem 1rem;
    }
    
    .ywm_responsible-text h2 {
        font-size: 2rem;
    }
    
    .ywm_partner-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .ywm_partner-logos a {
        height: 70px;
        padding: 0.8rem;
    }
    
    .ywm_partner-logos img {
        width: 100px;
        height: 50px;
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .ywm_responsible-section {
        padding: 2rem 0.5rem;
    }
    
    .ywm_responsible-text h2 {
        font-size: 1.75rem;
    }
    
    .ywm_partner-logos {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .ywm_partner-logos a {
        height: 60px;
        width: 100%;
        max-width: 200px;
        transform: none;
    }
    
    .ywm_partner-logos a:hover {
        transform: none;
    }
    
    .ywm_responsible-links a:hover {
        padding-left: 0;
    }
}

.ywm_footer-container {
    background: var(--ywm-primary-gradient);
    color: var(--ywm-text-light);
    padding: 3rem 2rem 1rem;
}

.ywm_footer-content {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.ywm_footer-block {
    flex: 1;
    height: 100%;
    min-width: 250px;
}

.ywm_footer-block h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--ywm-text-light);
}

.ywm_footer-block p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
    min-height: 4rem;
}

.ywm_footer-partners {
    margin-top: 1.5rem;
}

.ywm_footer-partners span {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.ywm_footer-partner-logos img {
    width: 100px;
    height: 40px;
    background: rgb(66, 66, 66);
    padding: 0.3rem;
    border-radius: 6px;
}

.ywm_footer-links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0.8rem;
    width: 100%;
    height: 100%;
}

.ywm_footer-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--ywm-text-light);
    text-decoration: none;
    transition: var(--ywm-transition);
    padding: 0.5rem 0;
    opacity: 0.9;
}

.ywm_footer-links a:hover {
    opacity: 1;
    transform: translateX(8px);
    color: var(--ywm-accent-color);
}

.ywm_footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.ywm_footer-copyright p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.ywm_footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.ywm_footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--ywm-text-light);
    text-decoration: none;
    transition: var(--ywm-transition);
    font-size: 1.2rem;
}

.ywm_footer-social a:hover {
    background: var(--ywm-accent-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .ywm_footer-container {
        padding: 2rem 1rem 1rem;
    }
    
    .ywm_footer-content {
        gap: 2rem;
    }
    
    .ywm_footer-block {
        min-height: min-content;
        flex: 1 1 100%;
        text-align: center;
    }

    .ywm_footer-block h3 {
        text-align: center;
    }

    .ywm_footer-links {
        justify-content: center;
        align-items: center;
        max-height: min-content;
    }
}

@media (max-width: 480px) {
    .ywm_footer-container {
        padding: 1.5rem 0.5rem 0.5rem;
    }
    
    .ywm_footer-block h3 {
        font-size: 1.25rem;
    }
    
    .ywm_footer-links a:hover {
        transform: none;
    }
}

.ywm_cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ywm-primary-gradient);
    color: var(--ywm-text-light);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

.ywm_cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

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

.ywm_cookie-text p {
    margin: 0;
    line-height: 1.5;
}

.ywm_cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.ywm_cookie-details {
    color: var(--ywm-accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--ywm-transition);
    padding: 0.5rem 1rem;
    border: 1px solid var(--ywm-accent-color);
    border-radius: 6px;
}

.ywm_cookie-details:hover {
    background: var(--ywm-accent-color);
    color: var(--ywm-text-light);
}

.ywm_cookie-accept {
    background: var(--ywm-accent-color);
    color: var(--ywm-text-light);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--ywm-transition);
}

.ywm_cookie-accept:hover {
    background: #3bb4ac;
    transform: scale(1.05);
}

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

@media (max-width: 480px) {
    .ywm_cookie-consent-bar {
        padding: 0.8rem;
    }
    
    .ywm_cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .ywm_cookie-details,
    .ywm_cookie-accept {
        width: 100%;
        text-align: center;
    }
    
    .ywm_cookie-accept:hover {
        transform: none;
    }
}

.ywm_age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 1rem;
    overflow-y: auto;
}

.ywm_age-confirmation-dialog {
    background: var(--ywm-primary-gradient);
    color: var(--ywm-text-light);
    padding: 3rem;
    border-radius: var(--ywm-border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    text-align: center;
    border: 2px solid var(--ywm-accent-color);
    overflow-y: auto;
}

.ywm_age-dialog-header {
    margin-bottom: 2rem;
}

.ywm_age-dialog-header i {
    font-size: 4rem;
    color: var(--ywm-accent-color);
    margin-bottom: 1rem;
}

.ywm_age-dialog-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.ywm_age-dialog-content {
    margin-bottom: 2.5rem;
}

.ywm_age-dialog-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.ywm_age-dialog-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.ywm_age-confirm {
    flex: 1;
    background: var(--ywm-accent-color);
    color: var(--ywm-text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--ywm-transition);
    min-width: 200px;
}

.ywm_age-confirm:hover {
    background: #3bb4ac;
    transform: scale(1.05);
}

.ywm_age-deny {
    flex: 1;
    background: transparent;
    color: var(--ywm-text-light);
    border: 2px solid var(--ywm-text-light);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--ywm-transition);
    min-width: 200px;
}

.ywm_age-deny:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.ywm_age-dialog-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.ywm_age-dialog-footer p {
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 480px) {
    .ywm_age-verification-overlay {
        align-items: flex-start;
    }
    
    .ywm_age-confirmation-dialog {
        padding: 2rem 1.5rem;
        margin: 0.5rem;
    }
    
    .ywm_age-dialog-header i {
        font-size: 3rem;
    }
    
    .ywm_age-dialog-header h2 {
        font-size: 1.5rem;
    }
    
    .ywm_age-dialog-actions {
        flex-direction: column;
    }
    
    .ywm_age-confirm,
    .ywm_age-deny {
        min-width: auto;
    }
    
    .ywm_age-confirm:hover,
    .ywm_age-deny:hover {
        transform: none;
    }
}

.ywmpg_about-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a2a47 0%, #2c4a7a 100%);
}

.ywmpg_about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

.ywmpg_about-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 163, 107, 0.05) 0%, transparent 50%);
    animation: ywmpg_pulse 4s ease-in-out infinite;
}

@keyframes ywmpg_pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.ywmpg_about-hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.ywmpg_about-hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.ywmpg_about-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.ywmpg_about-details {
    padding: 4rem 2rem;
    background: white;
}

.ywmpg_about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.ywmpg_about-card {
    flex: 1 1 300px;
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.ywmpg_about-card-featured {
    flex: 2 1 600px;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.ywmpg_about-icon {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 1.5rem;
}

.ywmpg_about-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2a47;
}

.ywmpg_about-card p {
    line-height: 1.6;
    color: #4a5568;
}

.ywmpg_about-features {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.ywmpg_about-features i {
    font-size: 2rem;
    color: #4ecdc4;
    padding: 0.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ywmpg_about-image img {
    width: 300px;
    height: 300px;
    max-width: 300px;
    max-height: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .ywmpg_about-hero {
        padding: 3rem 1.5rem;
    }
    
    .ywmpg_about-details {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .ywmpg_about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .ywmpg_about-card-featured {
        flex-direction: column;
    }
    
    .ywmpg_about-image img {
        width: 220px;
        height: 220px;
        max-width: 220px;
        max-height: 220px;
    }
}

@media (max-width: 480px) {
    .ywmpg_about-hero {
        padding: 2rem 0.5rem;
        min-height: 50vh;
    }
    
    .ywmpg_about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .ywmpg_about-hero-content p {
        font-size: 0.9rem;
    }
    
    .ywmpg_about-details {
        padding: 2rem 0.5rem;
    }
    
    .ywmpg_about-card {
        padding: 1.5rem;
    }
    
    .ywmpg_about-card h2 {
        font-size: 1.3rem;
    }
    
    .ywmpg_about-card p {
        font-size: 0.9rem;
    }
    
    .ywmpg_about-animation {
        animation: none;
    }
    
    .ywmpg_about-card:hover {
        transform: none;
    }
}

.ywmpg_privacy-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
}

.ywmpg_privacy-header {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.ywmpg_privacy-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ywmpg_privacy-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.ywmpg_privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.ywmpg_privacy-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: 15px;
    background: #f8fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #667eea;
}

.ywmpg_privacy-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ywmpg_privacy-icon {
    flex-shrink: 0;
    font-size: 2.5rem;
    color: #667eea;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ywmpg_privacy-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.ywmpg_privacy-text p {
    line-height: 1.7;
    color: #4a5568;
}

.ywmpg_privacy-text a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ywmpg_privacy-text a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .ywmpg_privacy-container {
        padding: 1.5rem;
    }
    
    .ywmpg_privacy-header h1 {
        font-size: 2.5rem;
    }
    
    .ywmpg_privacy-content {
        padding: 2rem;
    }
    
    .ywmpg_privacy-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .ywmpg_privacy-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .ywmpg_privacy-container {
        padding: 0.5rem;
    }
    
    .ywmpg_privacy-header {
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }
    
    .ywmpg_privacy-header h1 {
        font-size: 1.8rem;
    }
    
    .ywmpg_privacy-header p {
        font-size: 0.9rem;
    }
    
    .ywmpg_privacy-content {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .ywmpg_privacy-item {
        padding: 1rem 0.2rem;
        margin-bottom: 1.5rem;
    }
    
    .ywmpg_privacy-text h2 {
        font-size: 1.3rem;
    }
    
    .ywmpg_privacy-text p {
        font-size: 0.9rem;
    }
    
    .ywmpg_privacy-text a {
        font-size: 0.7rem;
    }
    
    .ywmpg_privacy-item:hover {
        transform: none;
    }
}

.ywmpg_terms-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa36b 100%);
    padding: 2rem;
}

.ywmpg_terms-header {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.ywmpg_terms-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ywmpg_terms-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.ywmpg_terms-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.ywmpg_terms-section {
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: 15px;
    background: #f8fafc;
    border-left: 4px solid #ff6b6b;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ywmpg_terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transition: left 0.5s ease;
}

.ywmpg_terms-section:hover::before {
    left: 100%;
}

.ywmpg_terms-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ywmpg_terms-icon {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.ywmpg_terms-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.ywmpg_terms-section p {
    line-height: 1.7;
    color: #4a5568;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .ywmpg_terms-container {
        padding: 1.5rem;
    }
    
    .ywmpg_terms-header h1 {
        font-size: 2.5rem;
    }
    
    .ywmpg_terms-content {
        padding: 2rem;
    }
    
    .ywmpg_terms-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ywmpg_terms-container {
        padding: 0.5rem;
    }
    
    .ywmpg_terms-header {
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }
    
    .ywmpg_terms-header h1 {
        font-size: 1.8rem;
    }
    
    .ywmpg_terms-header p {
        font-size: 0.9rem;
    }
    
    .ywmpg_terms-content {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .ywmpg_terms-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .ywmpg_terms-section h2 {
        font-size: 1.3rem;
    }
    
    .ywmpg_terms-section p {
        font-size: 0.9rem;
    }
    
    .ywmpg_terms-section:hover {
        transform: none;
    }
}

.ywmpg_responsible-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    padding: 2rem;
}

.ywmpg_responsible-header {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.ywmpg_responsible-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ywmpg_responsible-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.ywmpg_responsible-content {
    max-width: 1200px;
    margin: 0 auto;
}

.ywmpg_responsible-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.ywmpg_responsible-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.ywmpg_responsible-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ecdc4, #44a08d);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.ywmpg_responsible-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #4ecdc4;
}

.ywmpg_responsible-icon {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 1.5rem;
    background: #f0fdfa;
    padding: 1rem;
    border-radius: 50%;
    display: inline-block;
    transition: transform 0.3s ease;
}

.ywmpg_responsible-card:hover .ywmpg_responsible-icon {
    transform: scale(1.1) rotate(5deg);
}

.ywmpg_responsible-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.ywmpg_responsible-card p {
    line-height: 1.6;
    color: #4a5568;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .ywmpg_responsible-container {
        padding: 1.5rem;
    }
    
    .ywmpg_responsible-header h1 {
        font-size: 2.5rem;
    }
    
    .ywmpg_responsible-card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .ywmpg_responsible-container {
        padding: 0.5rem;
    }
    
    .ywmpg_responsible-header {
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }
    
    .ywmpg_responsible-header h1 {
        font-size: 1.8rem;
    }
    
    .ywmpg_responsible-header p {
        font-size: 0.9rem;
    }
    
    .ywmpg_responsible-grid {
        gap: 1rem;
    }
    
    .ywmpg_responsible-card {
        padding: 1.5rem;
    }
    
    .ywmpg_responsible-card h2 {
        font-size: 1.3rem;
    }
    
    .ywmpg_responsible-card p {
        font-size: 0.9rem;
    }
    
    .ywmpg_responsible-card:hover {
        transform: none;
    }
    
    .ywmpg_responsible-card:hover .ywmpg_responsible-icon {
        transform: none;
    }
}

.ywmpg_cookies-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 2rem;
}

.ywmpg_cookies-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.ywmpg_cookies-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.ywmpg_cookies-header p {
    font-size: 1.1rem;
    color: #4a5568;
}

.ywmpg_cookies-content {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ywmpg_cookies-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.ywmpg_cookies-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a8edea, #fed6e3);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.ywmpg_cookies-item:hover::after {
    width: 80%;
}

.ywmpg_cookies-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ywmpg_cookies-icon {
    flex-shrink: 0;
    font-size: 2.5rem;
    color: #a8edea;
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ywmpg_cookies-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.ywmpg_cookies-text p {
    line-height: 1.7;
    color: #4a5568;
}

.ywmpg_cookies-text a {
    color: #a8edea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ywmpg_cookies-text a:hover {
    color: #fed6e3;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .ywmpg_cookies-container {
        padding: 1.5rem;
    }
    
    .ywmpg_cookies-header h1 {
        font-size: 2.5rem;
    }
    
    .ywmpg_cookies-content {
        padding: 2rem;
    }
    
    .ywmpg_cookies-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .ywmpg_cookies-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .ywmpg_cookies-container {
        padding: 0.5rem;
    }
    
    .ywmpg_cookies-header {
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }
    
    .ywmpg_cookies-header h1 {
        font-size: 1.8rem;
    }
    
    .ywmpg_cookies-header p {
        font-size: 0.9rem;
    }
    
    .ywmpg_cookies-content {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .ywmpg_cookies-item {
        padding: 1rem 0.2rem;
        margin-bottom: 1.5rem;
    }
    
    .ywmpg_cookies-text h2 {
        font-size: 1.3rem;
    }
    
    .ywmpg_cookies-text p {
        font-size: 0.9rem;
    }
    
    .ywmpg_cookies-text a {
        font-size: 0.7rem;
    }
    
    .ywmpg_cookies-item:hover {
        transform: none;
    }
}

.ywmpg_faq-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.ywmpg_faq-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

.ywmpg_faq-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: ywmpg_float 6s ease-in-out infinite;
}

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

.ywmpg_faq-hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.ywmpg_faq-hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.ywmpg_faq-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.ywmpg_faq-content {
    background: white;
    padding: 4rem 2rem;
}

.ywmpg_faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.ywmpg_faq-intro h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.ywmpg_faq-intro p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}

.ywmpg_faq-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ywmpg_faq-block {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ywmpg_faq-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ywmpg_faq-block-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.ywmpg_faq-block-header i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
    display: block;
}

.ywmpg_faq-block-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.ywmpg_faq-block-header p {
    color: #64748b;
    font-size: 1rem;
}

.ywmpg_faq-block-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ywmpg_faq-block-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.ywmpg_faq-block-item:hover {
    border-color: #667eea;
}

.ywmpg_faq-block-question {
    width: 100%;
    background: #f8fafc;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.ywmpg_faq-block-question:hover {
    background: #f1f5f9;
}

.ywmpg_faq-block-question.active {
    background: #667eea;
    color: white;
}

.ywmpg_faq-block-question i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.ywmpg_faq-block-question.active i {
    transform: rotate(45deg);
}

.ywmpg_faq-block-answer {
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.ywmpg_faq-block-answer.active {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.ywmpg_faq-block-answer p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

.ywmpg_faq-block-answer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ywmpg_faq-block-answer a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .ywmpg_faq-hero {
        padding: 3rem 1.5rem;
        min-height: 40vh;
    }
    
    .ywmpg_faq-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .ywmpg_faq-content {
        padding: 3rem 1.5rem;
    }
    
    .ywmpg_faq-intro h2 {
        font-size: 2rem;
    }
    
    .ywmpg_faq-blocks {
        gap: 2rem;
    }
    
    .ywmpg_faq-block {
        padding: 2rem;
    }
    
    .ywmpg_faq-block-header {
        margin-bottom: 2rem;
    }
    
    .ywmpg_faq-block-header i {
        font-size: 2.5rem;
    }
    
    .ywmpg_faq-block-header h3 {
        font-size: 1.5rem;
    }
    
    .ywmpg_faq-block-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .ywmpg_faq-block-answer.active {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .ywmpg_faq-hero {
        padding: 2rem 0.5rem;
        min-height: 35vh;
    }
    
    .ywmpg_faq-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .ywmpg_faq-hero-content p {
        font-size: 0.9rem;
    }
    
    .ywmpg_faq-content {
        padding: 2rem 0.5rem;
    }
    
    .ywmpg_faq-intro h2 {
        font-size: 1.5rem;
    }
    
    .ywmpg_faq-intro p {
        font-size: 0.9rem;
    }
    
    .ywmpg_faq-blocks {
        gap: 1.5rem;
    }
    
    .ywmpg_faq-block {
        padding: 1.5rem 0.5rem;
    }
    
    .ywmpg_faq-block-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .ywmpg_faq-block-header i {
        font-size: 2rem;
    }
    
    .ywmpg_faq-block-header h3 {
        font-size: 1.3rem;
    }
    
    .ywmpg_faq-block-header p {
        font-size: 0.9rem;
    }
    
    .ywmpg_faq-block-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .ywmpg_faq-block-answer.active {
        padding: 1rem 0.5rem;
    }
    
    .ywmpg_faq-block-answer p {
        font-size: 0.9rem;
    }
    
    .ywmpg_faq-block-answer a {
        font-size: 0.7rem;
    }
    
    .ywmpg_faq-block:hover {
        transform: none;
    }
    
    .ywmpg_faq-animation {
        animation: none;
    }
}

.ywmpg_404-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa36b 50%, #ffd56b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.ywmpg_404-content {
    text-align: center;
    color: white;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.ywmpg_404-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: -1;
}

.ywmpg_404-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: ywmpg_pulse404 3s ease-in-out infinite;
}

.ywmpg_404-circle-1 {
    width: 400px;
    height: 400px;
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.ywmpg_404-circle-2 {
    width: 300px;
    height: 300px;
    top: 50px;
    left: 50px;
    animation-delay: 1s;
}

.ywmpg_404-circle-3 {
    width: 200px;
    height: 200px;
    top: 100px;
    left: 100px;
    animation-delay: 2s;
}

@keyframes ywmpg_pulse404 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.ywmpg_404-text h1 {
    font-family: 'Cinzel', serif;
    font-size: 8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ywmpg_404-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.ywmpg_404-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.ywmpg_404-actions {
    margin-bottom: 3rem;
}

.ywmpg_404-home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ywmpg_404-home-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ywmpg_404-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.ywmpg_404-icons i {
    font-size: 2rem;
    opacity: 0.7;
    animation: ywmpg_bounce404 2s ease-in-out infinite;
}

.ywmpg_404-icons i:nth-child(2) {
    animation-delay: 0.5s;
}

.ywmpg_404-icons i:nth-child(3) {
    animation-delay: 1s;
}

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

@media (max-width: 768px) {
    .ywmpg_404-container {
        padding: 1.5rem;
    }
    
    .ywmpg_404-text h1 {
        font-size: 6rem;
    }
    
    .ywmpg_404-text h2 {
        font-size: 2rem;
    }
    
    .ywmpg_404-text p {
        font-size: 1.1rem;
    }
    
    .ywmpg_404-animation {
        width: 300px;
        height: 300px;
    }
    
    .ywmpg_404-circle-1 {
        width: 300px;
        height: 300px;
    }
    
    .ywmpg_404-circle-2 {
        width: 200px;
        height: 200px;
        top: 50px;
        left: 50px;
    }
    
    .ywmpg_404-circle-3 {
        width: 100px;
        height: 100px;
        top: 100px;
        left: 100px;
    }
}

@media (max-width: 480px) {
    .ywmpg_404-container {
        padding: 0.5rem;
    }
    
    .ywmpg_404-text h1 {
        font-size: 4rem;
    }
    
    .ywmpg_404-text h2 {
        font-size: 1.5rem;
    }
    
    .ywmpg_404-text p {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .ywmpg_404-home-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .ywmpg_404-icons i {
        font-size: 1.5rem;
    }
    
    .ywmpg_404-animation {
        width: 250px;
        height: 250px;
    }
    
    .ywmpg_404-circle-1 {
        width: 250px;
        height: 250px;
    }
    
    .ywmpg_404-circle-2 {
        width: 150px;
        height: 150px;
    }
    
    .ywmpg_404-circle-3 {
        width: 50px;
        height: 50px;
        top: 100px;
        left: 100px;
    }
    
    .ywmpg_404-home-link:hover {
        transform: none;
    }
    
    .ywmpg_404-icons i {
        animation: none;
    }
}