:root {
    --jjh-sunset-orange: #ff6b35;
    --jjh-sunset-purple: #8a2be2;
    --jjh-sunset-pink: #ff1493;
    --jjh-sunset-yellow: #ffd700;
    --jjh-sunset-blue: #4169e1;
    --jjh-text-dark: #2c3e50;
    --jjh-text-light: #ffffff;
    --jjh-bg-light: #f8f9fa;
    --jjh-bg-dark: #1a1a2e;
    --jjh-shadow-soft: 0 8px 32px rgba(255, 107, 53, 0.1);
    --jjh-shadow-medium: 0 15px 35px rgba(138, 43, 226, 0.15);
    --jjh-border-radius: 16px;
    --jjh-transition-smooth: 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: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--jjh-text-dark);
    background: linear-gradient(135deg, var(--jjh-bg-light) 0%, #ffffff 100%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Abril Fatface', serif;
    line-height: 1.2;
}

.jjh-header-container {
    background: linear-gradient(135deg, var(--jjh-sunset-orange) 0%, var(--jjh-sunset-purple) 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--jjh-shadow-medium);
}

.jjh-header-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
    text-align: center;
}

.jjh-header-disclaimer p {
    color: var(--jjh-text-light);
    font-size: 0.875rem;
    font-weight: 600;
}

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

.jjh-header-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.jjh-header-brand img {
    width: 78px;
    height: 78px;
}

.jjh-header-brand span {
    color: var(--jjh-text-light);
    font-family: 'Abril Fatface', serif;
    font-size: 1.5rem;
}

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

.jjh-header-link {
    color: var(--jjh-text-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--jjh-transition-smooth);
    padding: 0.5rem 1rem;
    border-radius: var(--jjh-border-radius);
}

.jjh-header-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.jjh-header-contact {
    background: var(--jjh-sunset-yellow);
    color: var(--jjh-text-dark);
}

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

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

@media (max-width: 768px) {
    .jjh-header-brand span {
        display: none;
    }
    
    .jjh-header-menu {
        display: none;
    }
    
    .jjh-header-mobile-toggle {
        display: block;
    }
    
    .jjh-header-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .jjh-header-brand {
        order: 2;
    }
    
    .jjh-header-mobile-toggle {
        order: 1;
    }
}

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

main {
    margin-top: 120px;
}

.jjh-welcome-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/jjh-core/jjh-images/welcome-bg.webp');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    color: var(--jjh-text-light);
    text-align: center;
}

.jjh-welcome-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--jjh-sunset-yellow) 0%, var(--jjh-sunset-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jjh-welcome-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.jjh-welcome-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--jjh-border-radius);
    padding: 2rem;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    transition: var(--jjh-transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.jjh-welcome-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.jjh-welcome-card i {
    font-size: 3rem;
    color: var(--jjh-sunset-yellow);
    margin-bottom: 1rem;
}

.jjh-welcome-card-content span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.jjh-welcome-card-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 80px;
}

.jjh-welcome-card-content a {
    color: var(--jjh-sunset-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: var(--jjh-transition-smooth);
}

.jjh-welcome-card-content a:hover {
    color: var(--jjh-text-light);
}

@media (max-width: 1024px) {
    .jjh-welcome-content h1 {
        font-size: 2.5rem;
    }
    
    .jjh-welcome-cards {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .jjh-welcome-section {
        padding: 8rem 1rem;
    }
    
    .jjh-welcome-content h1 {
        font-size: 2rem;
    }
    
    .jjh-welcome-content p {
        font-size: 1rem;
    }
    
    .jjh-welcome-card {
        min-width: 150px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .jjh-welcome-section {
        padding: 12rem 0.5rem;
    }
    
    .jjh-welcome-content h1 {
        font-size: 1.75rem;
    }
    
    .jjh-welcome-card {
        padding: 1rem;
        min-width: 140px;
    }
    
    .jjh-welcome-card i {
        font-size: 2rem;
    }
}

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

.jjh-about-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.jjh-about-main img {
    width: 400px;
    height: 300px;
    border-radius: var(--jjh-border-radius);
    box-shadow: var(--jjh-shadow-medium);
}

.jjh-about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--jjh-sunset-purple);
}

.jjh-about-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.jjh-about-highlight {
    text-align: center;
}

.jjh-about-highlight i {
    font-size: 2rem;
    color: var(--jjh-sunset-orange);
    margin-bottom: 0.5rem;
}

.jjh-about-highlight span {
    font-weight: 600;
    color: var(--jjh-text-dark);
}

.jjh-about-values {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.jjh-about-value {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: var(--jjh-text-light);
    border-radius: var(--jjh-border-radius);
    box-shadow: var(--jjh-shadow-soft);
    transition: var(--jjh-transition-smooth);
}

.jjh-about-value:hover {
    transform: translateY(-5px);
    box-shadow: var(--jjh-shadow-medium);
}

.jjh-about-value i {
    font-size: 3rem;
    color: var(--jjh-sunset-blue);
    margin-bottom: 1rem;
}

.jjh-about-value h3 {
    margin-bottom: 1rem;
    color: var(--jjh-sunset-purple);
}

.jjh-about-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--jjh-sunset-orange) 0%, var(--jjh-sunset-pink) 100%);
    color: var(--jjh-text-light);
    text-decoration: none;
    border-radius: var(--jjh-border-radius);
    font-weight: 600;
    transition: var(--jjh-transition-smooth);
}

.jjh-about-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--jjh-shadow-medium);
}

@media (max-width: 1024px) {
    .jjh-about-main {
        flex-direction: column;
        text-align: center;
    }
    
    .jjh-about-main img {
        width: 100%;
        max-width: 500px;
        height: auto;
    }
    
    .jjh-about-values {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .jjh-about-section {
        padding: 4rem 1rem;
    }
    
    .jjh-about-text h2 {
        font-size: 2rem;
    }
    
    .jjh-about-highlights {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .jjh-about-section {
        padding: 2rem 0.5rem;
    }
    
    .jjh-about-main {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .jjh-about-value {
        padding: 1rem;
    }
    
    .jjh-about-cta {
        padding: 0.8rem 1.5rem;
    }
}

.jjh-features-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/jjh-core/jjh-images/features-bg.webp');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    color: var(--jjh-text-light);
}

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

.jjh-features-content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--jjh-sunset-yellow) 0%, var(--jjh-sunset-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.jjh-feature-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--jjh-border-radius);
    padding: 2rem;
    transition: var(--jjh-transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.jjh-feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.2);
}

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

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

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

.jjh-feature-icon i {
    font-size: 4rem;
    color: var(--jjh-sunset-yellow);
}

.jjh-feature-text {
    flex: 1;
    text-align: left;
}

.jjh-feature-item:nth-child(even) .jjh-feature-text {
    text-align: right;
}

.jjh-feature-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--jjh-sunset-yellow);
}

.jjh-feature-text p {
    font-size: 1.125rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .jjh-features-content h2 {
        font-size: 2.5rem;
    margin-bottom: 2rem;
    min-height: auto;
    padding: 0 1rem;
    line-height: 1.3;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 768px) {
    .jjh-features-section {
        padding: 4rem 1rem;
    }
    
    .jjh-features-content h2 {
        font-size: 2rem;
    }
    
    .jjh-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .jjh-feature-item:nth-child(even) {
        flex-direction: column;
    }
    
    .jjh-feature-text {
        text-align: center;
    }
    
    .jjh-feature-item:nth-child(even) .jjh-feature-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .jjh-features-section {
        padding: 2rem 0.5rem;
    }
    
    .jjh-features-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .jjh-feature-item {
        padding: 1rem;
    }
    
    .jjh-feature-icon i {
        font-size: 3rem;
    }
    
    .jjh-feature-text h3 {
        font-size: 1.25rem;
    }
    
    .jjh-feature-text p {
        font-size: 1rem;
    }
}

.jjh-entertainment-section {
    padding: 6rem 2rem;
    background: var(--jjh-bg-light);
}

.jjh-entertainment-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.jjh-entertainment-container h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--jjh-sunset-purple);
}

.jjh-entertainment-container p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--jjh-text-dark);
}

.jjh-entertainment-games {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.jjh-entertainment-game {
    background: var(--jjh-text-light);
    border-radius: var(--jjh-border-radius);
    overflow: hidden;
    box-shadow: var(--jjh-shadow-medium);
    transition: var(--jjh-transition-smooth);
    position: relative;
    flex: 1;
    max-width: 350px;
}

.jjh-entertainment-game:hover {
    transform: translateY(-10px) scale(1.02);
}

.jjh-game-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--jjh-sunset-orange);
    color: var(--jjh-text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 2;
}

.jjh-entertainment-game img {
    width: 100%;
    height: 180px;
}

.jjh-game-content {
    padding: 1.5rem;
}

.jjh-game-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--jjh-sunset-purple);
}

.jjh-game-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.jjh-game-icons i {
    font-size: 1.5rem;
    color: var(--jjh-sunset-orange);
}

.jjh-game-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--jjh-sunset-blue) 0%, var(--jjh-sunset-purple) 100%);
    color: var(--jjh-text-light);
    text-decoration: none;
    border-radius: var(--jjh-border-radius);
    font-weight: 600;
    transition: var(--jjh-transition-smooth);
}

.jjh-game-link:hover {
    background: linear-gradient(135deg, var(--jjh-sunset-purple) 0%, var(--jjh-sunset-blue) 100%);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .jjh-entertainment-games {
        flex-wrap: wrap;
    }
    
    .jjh-entertainment-game {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .jjh-entertainment-section {
        padding: 4rem 1rem;
    }
    
    .jjh-entertainment-container h2 {
        font-size: 2rem;
    }
    
    .jjh-entertainment-container p {
        font-size: 1rem;
    }
    
    .jjh-entertainment-games {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .jjh-entertainment-section {
        padding: 2rem 0.5rem;
    }
    
    .jjh-entertainment-container h2 {
        font-size: 1.75rem;
    }
    
    .jjh-entertainment-game {
        min-width: 250px;
    }
    
    .jjh-game-content {
        padding: 1rem;
    }
}

.jjh-free-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--jjh-sunset-orange) 0%, var(--jjh-sunset-pink) 100%);
    color: var(--jjh-text-light);
}

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

.jjh-free-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.jjh-free-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.jjh-free-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.jjh-free-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--jjh-border-radius);
    padding: 2rem;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    transition: var(--jjh-transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.jjh-free-card:hover {
    transform: translateY(-8px) rotate(2deg);
    background: rgba(255, 255, 255, 0.2);
}

.jjh-free-card i {
    font-size: 3rem;
    color: var(--jjh-sunset-yellow);
    margin-bottom: 1rem;
}

.jjh-free-card-details span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    min-height: 60px;
}

.jjh-free-card-details p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 110px;
}

.jjh-free-card-details a {
    color: var(--jjh-sunset-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: var(--jjh-transition-smooth);
}

.jjh-free-card-details a:hover {
    color: var(--jjh-text-light);
}

@media (max-width: 1024px) {
    .jjh-free-content h2 {
        font-size: 2.5rem;
    }
    
    .jjh-free-cards {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .jjh-free-section {
        padding: 4rem 1rem;
    }
    
    .jjh-free-content h2 {
        font-size: 2rem;
    }
    
    .jjh-free-content p {
        font-size: 1rem;
    }
    
    .jjh-free-card {
        min-width: 150px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .jjh-free-section {
        padding: 2rem 0.5rem;
    }
    
    .jjh-free-content h2 {
        font-size: 1.75rem;
    }
    
    .jjh-free-card {
        padding: 1rem;
        min-width: 140px;
    }
    
    .jjh-free-card i {
        font-size: 2rem;
    }
}

.jjh-subscribe-section {
    padding: 6rem 2rem;
    background: var(--jjh-bg-light);
}

.jjh-subscribe-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.jjh-subscribe-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--jjh-sunset-purple);
}

.jjh-subscribe-header p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.jjh-subscribe-benefits {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.jjh-subscribe-benefit {
    text-align: center;
}

.jjh-subscribe-benefit i {
    font-size: 2rem;
    color: var(--jjh-sunset-orange);
    margin-bottom: 0.5rem;
}

.jjh-subscribe-benefit span {
    font-weight: 600;
    color: var(--jjh-text-dark);
}

.jjh-subscribe-form-container {
    background: var(--jjh-text-light);
    padding: 2rem;
    border-radius: var(--jjh-border-radius);
    box-shadow: var(--jjh-shadow-medium);
}

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

.jjh-subscribe-input-group {
    display: flex;
    flex-direction: column;
}

.jjh-subscribe-email {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--jjh-border-radius);
    font-size: 1rem;
    transition: var(--jjh-transition-smooth);
}

.jjh-subscribe-email:focus {
    outline: none;
    border-color: var(--jjh-sunset-blue);
    box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.1);
}

.jjh-subscribe-error {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 20px;
}

.jjh-subscribe-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
}

.jjh-subscribe-checkbox {
    margin-top: 0.25rem;
}

.jjh-subscribe-checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.jjh-subscribe-checkbox-group a {
    color: var(--jjh-sunset-blue);
    text-decoration: none;
}

.jjh-subscribe-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--jjh-sunset-orange) 0%, var(--jjh-sunset-pink) 100%);
    color: var(--jjh-text-light);
    border: none;
    border-radius: var(--jjh-border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--jjh-transition-smooth);
}

.jjh-subscribe-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.jjh-subscribe-button:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: var(--jjh-shadow-medium);
}

.jjh-subscribe-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.jjh-subscribe-success p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--jjh-sunset-purple);
    font-weight: 600;
}

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

.jjh-subscribe-unsubscribe,
.jjh-subscribe-change {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--jjh-sunset-blue);
    background: transparent;
    color: var(--jjh-sunset-blue);
    border-radius: var(--jjh-border-radius);
    cursor: pointer;
    transition: var(--jjh-transition-smooth);
    font-weight: 600;
}

.jjh-subscribe-unsubscribe:hover,
.jjh-subscribe-change:hover {
    background: var(--jjh-sunset-blue);
    color: var(--jjh-text-light);
}

.jjh-subscribe-graphic {
    text-align: center;
    margin: 2rem 0;
}

.jjh-subscribe-graphic i {
    font-size: 8rem;
    color: var(--jjh-sunset-orange);
    opacity: 0.7;
}

.jjh-subscribe-advantages {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.jjh-subscribe-advantage {
    text-align: center;
}

.jjh-subscribe-advantage i {
    font-size: 2rem;
    color: var(--jjh-sunset-purple);
    margin-bottom: 0.5rem;
}

.jjh-subscribe-advantage span {
    font-weight: 600;
    color: var(--jjh-text-dark);
}

@media (max-width: 1024px) {
    .jjh-subscribe-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .jjh-subscribe-header {
        text-align: center;
    }
    
    .jjh-subscribe-benefits {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .jjh-subscribe-section {
        padding: 4rem 1rem;
    }
    
    .jjh-subscribe-header h2 {
        font-size: 2rem;
    }
    
    .jjh-subscribe-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .jjh-subscribe-advantages {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .jjh-subscribe-section {
        padding: 2rem 0.5rem;
    }
    
    .jjh-subscribe-header h2 {
        font-size: 1.75rem;
    }
    
    .jjh-subscribe-form-container {
        padding: 1rem;
    }
    
    .jjh-subscribe-graphic i {
        font-size: 5rem;
    }
    
    .jjh-subscribe-success-actions {
        flex-direction: column;
    }
}

.jjh-faq-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/jjh-core/jjh-images/faq-bg.webp');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    color: var(--jjh-text-light);
}

.jjh-faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.jjh-faq-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--jjh-sunset-yellow) 0%, var(--jjh-sunset-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jjh-faq-categories {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.jjh-faq-category {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--jjh-border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.jjh-faq-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--jjh-sunset-yellow);
    text-align: center;
}

.jjh-faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jjh-faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.jjh-faq-question {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--jjh-transition-smooth);
}

.jjh-faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.jjh-faq-question span {
    font-weight: 600;
    flex: 1;
}

.jjh-faq-question i {
    transition: var(--jjh-transition-smooth);
}

.jjh-faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--jjh-transition-smooth);
}

.jjh-faq-answer p {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.jjh-faq-contact {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    background: var(--jjh-sunset-yellow);
    color: var(--jjh-text-dark);
    text-decoration: none;
    border-radius: var(--jjh-border-radius);
    font-weight: 600;
    transition: var(--jjh-transition-smooth);
    max-width: 300px;
    margin: 0 auto;
}

.jjh-faq-contact:hover {
    background: var(--jjh-text-light);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .jjh-faq-categories {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .jjh-faq-section {
        padding: 4rem 1rem;
    }
    
    .jjh-faq-container h2 {
        font-size: 2rem;
    }
    
    .jjh-faq-category {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .jjh-faq-section {
        padding: 2rem 0.5rem;
    }
    
    .jjh-faq-container h2 {
        font-size: 1.75rem;
    }
    
    .jjh-faq-category {
        padding: 1rem;
    }
    
    .jjh-faq-question {
        padding: 0.8rem;
    }
    
    .jjh-faq-contact {
        padding: 0.8rem 1.5rem;
    }
}

.jjh-testimonials-section {
    padding: 6rem 2rem;
    background: var(--jjh-bg-light);
}

.jjh-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.jjh-testimonials-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--jjh-sunset-purple);
}

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

.jjh-testimonial-card {
    background: var(--jjh-text-light);
    border-radius: var(--jjh-border-radius);
    padding: 2rem;
    box-shadow: var(--jjh-shadow-soft);
    transition: var(--jjh-transition-smooth);
    position: relative;
}

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

.jjh-testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.jjh-testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.jjh-testimonial-info {
    flex: 1;
}

.jjh-testimonial-info span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--jjh-text-dark);
}

.jjh-testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.jjh-testimonial-rating i {
    color: var(--jjh-sunset-yellow);
    font-size: 1rem;
}

.jjh-testimonial-header i.bx-quote-right {
    font-size: 2rem;
    color: var(--jjh-sunset-orange);
    opacity: 0.3;
}

.jjh-testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--jjh-text-dark);
}

.jjh-testimonial-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #666;
}

@media (max-width: 1024px) {
    .jjh-testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .jjh-testimonials-section {
        padding: 4rem 1rem;
    }
    
    .jjh-testimonials-container h2 {
        font-size: 2rem;
    }
    
    .jjh-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .jjh-testimonials-section {
        padding: 2rem 0.5rem;
    }
    
    .jjh-testimonials-container h2 {
        font-size: 1.75rem;
    }
    
    .jjh-testimonial-card {
        padding: 1rem;
    }
    
    .jjh-testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .jjh-testimonial-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

.jjh-responsibility-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--jjh-sunset-blue) 0%, var(--jjh-sunset-purple) 100%);
    color: var(--jjh-text-light);
}

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

.jjh-responsibility-container h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.jjh-responsibility-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.jjh-responsibility-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.jjh-responsibility-content a {
    color: var(--jjh-text-light);
    text-decoration: none;
    transition: var(--jjh-transition-smooth);
}

.jjh-responsibility-content a:hover {
    color: var(--jjh-sunset-yellow);
}

.jjh-responsibility-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.jjh-responsibility-partners a,
.jjh-responsibility-partners img {
    transition: var(--jjh-transition-smooth);
}

.jjh-responsibility-partners a:hover {
    transform: scale(1.1);
}

.jjh-responsibility-partners img {
    width: 120px;
    height: 55px;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .jjh-responsibility-container h2 {
        font-size: 2.5rem;
    }
    
    .jjh-responsibility-partners {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .jjh-responsibility-section {
        padding: 4rem 1rem;
    }
    
    .jjh-responsibility-container h2 {
        font-size: 2rem;
    }
    
    .jjh-responsibility-content p {
        font-size: 1rem;
    }
    
    .jjh-responsibility-partners {
        gap: 1rem;
    }
    
    .jjh-responsibility-partners img {
        width: 100px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .jjh-responsibility-section {
        padding: 2rem 0.5rem;
    }
    
    .jjh-responsibility-container h2 {
        font-size: 1.75rem;
    }
    
    .jjh-responsibility-partners {
        flex-direction: column;
    }
    
    .jjh-responsibility-partners img {
        width: 90px;
        height: 40px;
    }
}

.jjh-footer-container {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('/jjh-core/jjh-images/footer-bg.webp');
    background-size: cover;
    background-position: center;
    color: var(--jjh-text-light);
    padding: 4rem 2rem 2rem;
}

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

.jjh-footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.jjh-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.jjh-footer-brand img {
    width: 78px;
    height: 78px;
}

.jjh-footer-brand span {
    font-family: 'Abril Fatface', serif;
    font-size: 1.25rem;
}

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

.jjh-footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.jjh-footer-column a {
    color: var(--jjh-text-light);
    text-decoration: none;
    transition: var(--jjh-transition-smooth);
}

.jjh-footer-column a:hover {
    color: var(--jjh-sunset-yellow);
}

.jjh-footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

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

@media (max-width: 768px) {
    .jjh-footer-container {
        padding: 3rem 1rem 1rem;
    }
    
    .jjh-footer-main {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .jjh-footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .jjh-footer-column {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .jjh-footer-main {
        align-items: center;
    }

    .jjh-footer-container {
        padding: 2rem 0.5rem 1rem;
    }
    
    .jjh-footer-brand {
        flex-direction: column;
    gap: 0.5rem;
    }
    
    .jjh-footer-brand span {
        font-size: 1rem;
    }
}

.jjh-scroll-indicator {
    position: fixed;
    left: 2rem;
    bottom: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.jjh-scroll-progress {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--jjh-sunset-purple);
    box-shadow: var(--jjh-shadow-soft);
    backdrop-filter: blur(10px);
}

.jjh-scroll-top,
.jjh-scroll-bottom {
    background: var(--jjh-sunset-orange);
    color: var(--jjh-text-light);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--jjh-transition-smooth);
    box-shadow: var(--jjh-shadow-soft);
}

.jjh-scroll-top:hover,
.jjh-scroll-bottom:hover {
    background: var(--jjh-sunset-purple);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .jjh-scroll-indicator {
        left: 1rem;
        bottom: 1rem;
    }
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-confirmation-dialog {
    background: var(--jjh-text-light);
    border-radius: var(--jjh-border-radius);
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 2rem;
    box-shadow: var(--jjh-shadow-medium);
}

.age-verification-icon {
    font-size: 4rem;
    color: var(--jjh-sunset-orange);
    margin-bottom: 1.5rem;
}

.age-confirmation-dialog h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--jjh-sunset-purple);
}

.age-confirmation-dialog p {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--jjh-text-dark);
}

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

.age-confirm-button {
    padding: 1rem 2rem;
    background: var(--jjh-sunset-orange);
    color: var(--jjh-text-light);
    border: none;
    border-radius: var(--jjh-border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--jjh-transition-smooth);
}

.age-confirm-button:hover {
    background: var(--jjh-sunset-purple);
    transform: translateY(-2px);
}

.age-decline-button {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--jjh-sunset-orange);
    border: 2px solid var(--jjh-sunset-orange);
    border-radius: var(--jjh-border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--jjh-transition-smooth);
}

.age-decline-button:hover {
    background: var(--jjh-sunset-orange);
    color: var(--jjh-text-light);
}

.cookie-notification-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--jjh-text-light);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    padding: 1.5rem 2rem;
}

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

.cookie-message-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-message-content i {
    font-size: 2rem;
    color: var(--jjh-sunset-orange);
}

.cookie-text-content h4 {
    margin-bottom: 0.5rem;
    color: var(--jjh-sunset-purple);
}

.cookie-text-content p {
    color: var(--jjh-text-dark);
    font-size: 0.9rem;
}

.cookie-action-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-policy-link {
    color: var(--jjh-sunset-blue);
    text-decoration: none;
    font-weight: 600;
}

.cookie-accept-button {
    padding: 0.75rem 1.5rem;
    background: var(--jjh-sunset-orange);
    color: var(--jjh-text-light);
    border: none;
    border-radius: var(--jjh-border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--jjh-transition-smooth);
}

.cookie-accept-button:hover {
    background: var(--jjh-sunset-purple);
}

.cookie-decline-button {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--jjh-sunset-orange);
    border: 2px solid var(--jjh-sunset-orange);
    border-radius: var(--jjh-border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--jjh-transition-smooth);
}

.cookie-decline-button:hover {
    background: var(--jjh-sunset-orange);
    color: var(--jjh-text-light);
}

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

.feedback-modal-window {
    background: var(--jjh-text-light);
    border-radius: var(--jjh-border-radius);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    position: relative;
    box-shadow: var(--jjh-shadow-medium);
}

.contact-form-main {
    flex: 1;
    padding: 3rem;
}

.contact-form-main h3 {
    font-size: 2rem;
    padding-top: 3rem;
    margin-bottom: 2rem;
    color: var(--jjh-sunset-purple);
}

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

.contact-input-group {
    display: flex;
    flex-direction: column;
}

.contact-email-input,
.contact-name-input,
.contact-message-input {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--jjh-border-radius);
    font-size: 1rem;
    transition: var(--jjh-transition-smooth);
    font-family: 'Source Sans Pro', sans-serif;
}

.contact-message-input {
    min-height: 120px;
    resize: vertical;
}

.contact-email-input:focus,
.contact-name-input:focus,
.contact-message-input:focus {
    outline: none;
    border-color: var(--jjh-sunset-blue);
    box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.1);
}

.contact-input-error {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 20px;
}

.contact-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
}

.contact-agree-checkbox {
    margin-top: 0.25rem;
}

.contact-checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-checkbox-group a {
    color: var(--jjh-sunset-blue);
    text-decoration: none;
}

.contact-submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--jjh-sunset-orange) 0%, var(--jjh-sunset-pink) 100%);
    color: var(--jjh-text-light);
    border: none;
    border-radius: var(--jjh-border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--jjh-transition-smooth);
}

.contact-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-submit-button:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: var(--jjh-shadow-medium);
}

.contact-info-sidebar {
    flex: 0 0 300px;
    background: linear-gradient(135deg, var(--jjh-sunset-blue) 0%, var(--jjh-sunset-purple) 100%);
    color: var(--jjh-text-light);
    padding: 2rem;
}

.contact-info-sidebar h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.contact-info-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--jjh-sunset-yellow);
}

.contact-info-card span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.contact-close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--jjh-text-dark);
    cursor: pointer;
    transition: var(--jjh-transition-smooth);
}

.contact-close-button:hover {
    color: var(--jjh-sunset-orange);
    transform: scale(1.1);
}

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

.contact-success-modal {
  background: var(--jjh-text-light);
  border-radius: 20px;
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: contact-success-appear 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes contact-success-appear {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.contact-success-icon {
  font-size: 4rem;
  color: #27ae60;
  margin-bottom: 1.5rem;
  animation: contact-success-bounce 1s ease-in-out;
}

@keyframes contact-success-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.contact-success-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--jjh-sunset-purple);
  font-family: 'Abril Fatface', serif;
}

.contact-success-content p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--jjh-text-dark);
}

.contact-success-email {
  color: var(--jjh-sunset-orange);
  font-weight: 600;
}

.contact-success-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.contact-success-close,
.contact-success-new {
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--jjh-border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--jjh-transition-smooth);
  font-size: 1rem;
}

.contact-success-close {
  background: var(--jjh-sunset-blue);
  color: var(--jjh-text-light);
}

.contact-success-new {
  background: transparent;
  color: var(--jjh-sunset-blue);
  border: 2px solid var(--jjh-sunset-blue);
}

.contact-success-close:hover {
  background: var(--jjh-sunset-purple);
  transform: translateY(-2px);
}

.contact-success-new:hover {
  background: var(--jjh-sunset-blue);
  color: var(--jjh-text-light);
  transform: translateY(-2px);
}

.contact-success-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 3rem;
  color: var(--jjh-sunset-orange);
  opacity: 0.3;
  animation: contact-success-rotate 10s linear infinite;
}

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

@media (max-width: 768px) {
    .feedback-modal-window {
        flex-direction: column;
    }
    
    .contact-info-sidebar {
        flex: none;
    }
    
    .contact-form-main {
        padding: 2rem;
    }
    
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-message-content {
        flex-direction: column;
    }

    .contact-success-overlay {
        padding: 1rem;
    }
    
    .contact-success-modal {
        padding: 2rem;
    }
    
    .contact-success-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .contact-form-overlay {
        padding: 1rem;
    }
    
    .contact-form-main {
        padding: 1rem;
    }
    
    .contact-form-main h3 {
        font-size: 1.5rem;
    }
    
    .contact-info-sidebar {
        padding: 1rem;
    }
    
    .age-confirmation-dialog {
        padding: 2rem 1rem;
        margin: 1rem;
    }
    
    .age-verification-actions {
        flex-direction: column;
    }
    
    .cookie-notification-bar {
        padding: 1rem;
    }

    .contact-success-overlay {
        padding: 0.5rem;
    }
    
    .contact-success-modal {
        padding: 1.5rem;
    }
    
    .contact-success-content h3 {
        font-size: 1.5rem;
    }
    
    .contact-success-content p {
        font-size: 0.9rem;
    }
    
    .contact-success-close,
    .contact-success-new {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-success-icon {
        font-size: 3rem;
    }
    
    .contact-success-decoration {
        font-size: 2rem;
        top: -15px;
        right: -15px;
    }
}

@media (max-width: 480px) {
    .jjh-welcome-card:hover,
    .jjh-feature-item:hover,
    .jjh-entertainment-game:hover,
    .jjh-free-card:hover,
    .jjh-testimonial-card:hover,
    .jjh-about-value:hover {
        transform: none;
    }
}

.jjhpgs-privacy-main {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 100vh;
  margin-top: 140px;
}

.jjhpgs-privacy-hero {
  background: linear-gradient(135deg, var(--jjh-sunset-blue) 0%, var(--jjh-sunset-purple) 100%);
  color: var(--jjh-text-light);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jjhpgs-privacy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/jjh-core/jjh-images/privacy-pattern.webp');
  opacity: 0.1;
}

.jjhpgs-privacy-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.jjhpgs-privacy-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--jjh-sunset-yellow) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jjhpgs-privacy-hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.jjhpgs-privacy-icon {
  font-size: 4rem;
  color: var(--jjh-sunset-yellow);
  animation: jjhpgs-float 3s ease-in-out infinite;
}

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

.jjhpgs-privacy-content {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.jjhpgs-privacy-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.jjhpgs-privacy-section {
  background: var(--jjh-text-light);
  border-radius: var(--jjh-border-radius);
  padding: 2.5rem;
  box-shadow: var(--jjh-shadow-soft);
  transition: var(--jjh-transition-smooth);
  border-left: 4px solid var(--jjh-sunset-orange);
}

.jjhpgs-privacy-section:hover {
  transform: translateY(-5px);
  box-shadow: var(--jjh-shadow-medium);
}

.jjhpgs-privacy-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.jjhpgs-privacy-header i {
  font-size: 2.5rem;
  color: var(--jjh-sunset-orange);
}

.jjhpgs-privacy-header h2 {
  font-size: 2rem;
  color: var(--jjh-sunset-purple);
  margin: 0;
}

.jjhpgs-privacy-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.jjhpgs-privacy-point {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: var(--jjh-transition-smooth);
}

.jjhpgs-privacy-point:hover {
  background: #e9ecef;
  transform: translateX(10px);
}

.jjhpgs-privacy-point i {
  font-size: 2rem;
  color: var(--jjh-sunset-blue);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

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

.jjhpgs-privacy-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--jjh-sunset-purple);
}

.jjhpgs-privacy-text p {
  line-height: 1.7;
  color: var(--jjh-text-dark);
  margin: 0;
}

.jjhpgs-privacy-text a {
    cursor: pointer;
}

@media (max-width: 1024px) {
  .jjhpgs-privacy-hero h1 {
    font-size: 2.5rem;
  }
  
  .jjhpgs-privacy-content {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .jjhpgs-privacy-main {
    margin-top: 195px;
  }
  
  .jjhpgs-privacy-hero {
    padding: 3rem 1rem;
  }
  
  .jjhpgs-privacy-hero h1 {
    font-size: 2rem;
  }
  
  .jjhpgs-privacy-hero p {
    font-size: 1rem;
  }
  
  .jjhpgs-privacy-section {
    padding: 1.5rem;
  }
  
  .jjhpgs-privacy-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .jjhpgs-privacy-point {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .jjhpgs-privacy-hero {
    padding: 2rem 0.5rem;
  }
  
  .jjhpgs-privacy-hero h1 {
    font-size: 1.75rem;
  }
  
  .jjhpgs-privacy-content {
    padding: 2rem 0.3rem;
  }
  
  .jjhpgs-privacy-section {
    padding: 1rem 0.5rem;
  }
  
  .jjhpgs-privacy-header h2 {
    font-size: 1.5rem;
  }
  
  .jjhpgs-privacy-point {
    padding: 1rem 0.3rem;
  }
  
  .jjhpgs-privacy-text h3 {
    font-size: 1.1rem;
  }
  
  .jjhpgs-privacy-text p {
    font-size: 0.9rem;
  }
}

.jjhpgs-terms-main {
  background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
  min-height: 100vh;
  margin-top: 140px;
}

.jjhpgs-terms-banner {
  background: linear-gradient(135deg, var(--jjh-sunset-orange) 0%, var(--jjh-sunset-pink) 100%);
  color: var(--jjh-text-light);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jjhpgs-terms-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(transparent, #f0f2f5);
}

.jjhpgs-terms-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.jjhpgs-terms-banner h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--jjh-sunset-yellow) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jjhpgs-terms-banner p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.jjhpgs-terms-decoration {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.3);
  animation: jjhpgs-spin 20s linear infinite;
}

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

.jjhpgs-terms-articles {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.jjhpgs-terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.jjhpgs-terms-article {
  perspective: 1000px;
}

.jjhpgs-terms-card {
  background: var(--jjh-text-light);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--jjh-shadow-soft);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid #e8ecef;
}

.jjhpgs-terms-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--jjh-sunset-blue) 0%, var(--jjh-sunset-purple) 100%);
}

.jjhpgs-terms-card:hover {
  transform: translateY(-3px) rotateX(3deg);
  box-shadow: 0 25px 50px rgba(138, 43, 226, 0.15);
}

.jjhpgs-terms-icon {
  text-align: center;
  margin-bottom: 1.5rem;
}

.jjhpgs-terms-icon i {
  font-size: 3rem;
  color: var(--jjh-sunset-orange);
  background: linear-gradient(135deg, var(--jjh-sunset-orange) 0%, var(--jjh-sunset-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jjhpgs-terms-card h2 {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--jjh-sunset-purple);
  position: relative;
}

.jjhpgs-terms-card h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--jjh-sunset-orange);
  border-radius: 2px;
}

.jjhpgs-terms-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.jjhpgs-terms-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: var(--jjh-transition-smooth);
  border-left: 3px solid transparent;
}

.jjhpgs-terms-detail:hover {
  border-left-color: var(--jjh-sunset-blue);
  background: #e9ecef;
  transform: translateX(2px);
}

.jjhpgs-terms-detail i {
  font-size: 1.5rem;
  color: var(--jjh-sunset-blue);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.jjhpgs-terms-detail h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--jjh-sunset-purple);
}

.jjhpgs-terms-detail p {
  line-height: 1.6;
  color: var(--jjh-text-dark);
  margin: 0;
  font-size: 0.95rem;
}

.jjhpgs-terms-detail a {
    cursor: pointer;
}

@media (max-width: 1024px) {
  .jjhpgs-terms-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
  
  .jjhpgs-terms-banner h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .jjhpgs-terms-main {
    margin-top: 195px;
  }

  .jjhpgs-terms-banner {
    padding: 3rem 1rem;
  }
  
  .jjhpgs-terms-banner h1 {
    font-size: 2rem;
  }
  
  .jjhpgs-terms-banner p {
    font-size: 1rem;
  }
  
  .jjhpgs-terms-articles {
    padding: 3rem 1rem;
  }
  
  .jjhpgs-terms-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .jjhpgs-terms-card {
    padding: 1.5rem;
  }
  
  .jjhpgs-terms-detail {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .jjhpgs-terms-banner {
    padding: 2rem 0.5rem;
  }
  
  .jjhpgs-terms-banner h1 {
    font-size: 1.75rem;
  }
  
  .jjhpgs-terms-articles {
    padding: 2rem 0.3rem;
  }
  
  .jjhpgs-terms-card {
    padding: 1rem 0.5rem;
  }
  
  .jjhpgs-terms-card h2 {
    font-size: 1.5rem;
  }
  
  .jjhpgs-terms-detail {
    padding: 1rem 0.3rem;
  }
  
  .jjhpgs-terms-detail h3 {
    font-size: 1rem;
  }
  
  .jjhpgs-terms-detail p {
    font-size: 0.85rem;
  }
  
  .jjhpgs-terms-decoration {
    font-size: 3rem;
  }
}

.jjhpgs-cookies-main {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  min-height: 100vh;
  margin-top: 140px;
}

.jjhpgs-cookies-header {
  background: linear-gradient(135deg, var(--jjh-sunset-purple) 0%, var(--jjh-sunset-blue) 100%);
  color: var(--jjh-text-light);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jjhpgs-cookies-intro {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.jjhpgs-cookies-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--jjh-sunset-yellow) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jjhpgs-cookies-header p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.jjhpgs-cookies-visual {
  position: relative;
  display: inline-block;
  margin-top: 2rem;
}

.jjhpgs-cookies-visual i {
  font-size: 6rem;
  color: var(--jjh-sunset-yellow);
  position: relative;
  z-index: 3;
  animation: jjhpgs-pulse 2s ease-in-out infinite;
}

@keyframes jjhpgs-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.jjhpgs-cookies-orbits {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.jjhpgs-cookies-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: jjhpgs-orbit 10s linear infinite;
}

.jjhpgs-cookies-orbit:nth-child(1) {
  width: 120px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  animation-delay: 0s;
}

.jjhpgs-cookies-orbit:nth-child(2) {
  width: 160px;
  height: 160px;
  margin-left: -80px;
  margin-top: -80px;
  animation-delay: -3s;
}

.jjhpgs-cookies-orbit:nth-child(3) {
  width: 200px;
  height: 200px;
  margin-left: -100px;
  margin-top: -100px;
  animation-delay: -6s;
}

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

.jjhpgs-cookies-explanation {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.jjhpgs-cookies-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.jjhpgs-cookies-category {
  background: var(--jjh-text-light);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--jjh-shadow-soft);
  transition: var(--jjh-transition-smooth);
  border: 1px solid #e8ecef;
}

.jjhpgs-cookies-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--jjh-shadow-medium);
}

.jjhpgs-cookies-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.jjhpgs-cookies-category-header i {
  font-size: 2.5rem;
  color: var(--jjh-sunset-orange);
}

.jjhpgs-cookies-category-header h2 {
  font-size: 2rem;
  color: var(--jjh-sunset-purple);
  margin: 0;
}

.jjhpgs-cookies-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.jjhpgs-cookies-item {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 1.5rem;
  transition: var(--jjh-transition-smooth);
  position: relative;
  border: 1px solid #e9ecef;
}

.jjhpgs-cookies-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.jjhpgs-cookies-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--jjh-sunset-orange);
  color: var(--jjh-text-light);
}

.jjhpgs-cookies-optional {
  background: var(--jjh-sunset-blue);
}

.jjhpgs-cookies-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--jjh-sunset-purple);
  padding-right: 80px;
}

.jjhpgs-cookies-item p {
  line-height: 1.6;
  color: var(--jjh-text-dark);
  margin-bottom: 1rem;
}

.jjhpgs-cookies-item a {
    cursor: pointer;
}

.jjhpgs-cookies-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #666;
}

.jjhpgs-cookies-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.jjhpgs-cookies-meta i {
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .jjhpgs-cookies-header h1 {
    font-size: 2.5rem;
  }
  
  .jjhpgs-cookies-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .jjhpgs-cookies-main {
    margin-top: 195px;
  }

  .jjhpgs-cookies-header {
    padding: 3rem 1rem;
  }
  
  .jjhpgs-cookies-header h1 {
    font-size: 2rem;
  }
  
  .jjhpgs-cookies-header p {
    font-size: 1rem;
  }
  
  .jjhpgs-cookies-explanation {
    padding: 3rem 1rem;
  }
  
  .jjhpgs-cookies-category {
    padding: 1.5rem;
  }
  
  .jjhpgs-cookies-category-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .jjhpgs-cookies-visual i {
    font-size: 4rem;
  }
  
  .jjhpgs-cookies-orbits {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .jjhpgs-cookies-header {
    padding: 2rem 0.5rem;
  }
  
  .jjhpgs-cookies-header h1 {
    font-size: 1.75rem;
  }
  
  .jjhpgs-cookies-explanation {
    padding: 2rem 0.3rem;
  }
  
  .jjhpgs-cookies-category {
    padding: 1rem 0.5rem;
  }
  
  .jjhpgs-cookies-category-header h2 {
    font-size: 1.5rem;
  }
  
  .jjhpgs-cookies-item {
    padding: 1rem 0.5rem;
  }
  
  .jjhpgs-cookies-item h3 {
    font-size: 1.1rem;
    padding-right: 70px;
  }
  
  .jjhpgs-cookies-item p {
    font-size: 0.9rem;
  }
  
  .jjhpgs-cookies-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .jjhpgs-cookies-visual i {
    font-size: 3rem;
  }
  
  .jjhpgs-cookies-orbits {
    width: 120px;
    height: 120px;
  }
}

.jjhpgs-notfound-main {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  min-height: 100vh;
  margin-top: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jjh-text-light);
  position: relative;
  overflow: hidden;
}

.jjhpgs-notfound-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.jjhpgs-notfound-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.jjhpgs-notfound-animation {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.jjhpgs-notfound-orb {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 53, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: jjhpgs-orb-rotate 20s linear infinite;
}

.jjhpgs-notfound-orb-1 {
  width: 250px;
  height: 250px;
  animation-delay: 0s;
  border-color: rgba(255, 107, 53, 0.4);
}

.jjhpgs-notfound-orb-2 {
  width: 200px;
  height: 200px;
  animation-delay: -5s;
  border-color: rgba(138, 43, 226, 0.4);
}

.jjhpgs-notfound-orb-3 {
  width: 150px;
  height: 150px;
  animation-delay: -10s;
  border-color: rgba(65, 105, 225, 0.4);
}

@keyframes jjhpgs-orb-rotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.jjhpgs-notfound-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--jjh-sunset-orange) 0%, var(--jjh-sunset-pink) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(255, 107, 53, 0.5);
  animation: jjhpgs-center-pulse 2s ease-in-out infinite;
}

.jjhpgs-notfound-center i {
  font-size: 3rem;
  color: var(--jjh-text-light);
}

@keyframes jjhpgs-center-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

.jjhpgs-notfound-text {
  text-align: left;
}

.jjhpgs-notfound-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--jjh-sunset-yellow) 0%, var(--jjh-sunset-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jjhpgs-notfound-text p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.jjhpgs-notfound-features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.jjhpgs-notfound-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  flex: 1;
}

.jjhpgs-notfound-feature i {
  font-size: 2rem;
  color: var(--jjh-sunset-blue);
  margin-bottom: 0.5rem;
}

.jjhpgs-notfound-feature span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.jjhpgs-notfound-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.jjhpgs-notfound-home,
.jjhpgs-notfound-support {
  padding: 1rem 2rem;
  border-radius: var(--jjh-border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--jjh-transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
  text-align: center;
}

.jjhpgs-notfound-home {
  background: linear-gradient(135deg, var(--jjh-sunset-orange) 0%, var(--jjh-sunset-pink) 100%);
  color: var(--jjh-text-light);
}

.jjhpgs-notfound-support {
  background: rgba(255, 255, 255, 0.1);
  color: var(--jjh-text-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.jjhpgs-notfound-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.jjhpgs-notfound-support:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.jjhpgs-notfound-tips h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--jjh-sunset-yellow);
}

.jjhpgs-notfound-tips-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.jjhpgs-notfound-tip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: var(--jjh-transition-smooth);
}

.jjhpgs-notfound-tip:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.jjhpgs-notfound-tip i {
  color: var(--jjh-sunset-orange);
  font-size: 1.25rem;
}

.jjhpgs-notfound-tip span {
  opacity: 0.9;
}

.jjhpgs-notfound-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.jjhpgs-notfound-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: jjhpgs-particle-float 15s infinite linear;
}

.jjhpgs-notfound-particle:nth-child(1) {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.jjhpgs-notfound-particle:nth-child(2) {
  width: 12px;
  height: 12px;
  top: 60%;
  left: 80%;
  animation-delay: -5s;
}

.jjhpgs-notfound-particle:nth-child(3) {
  width: 6px;
  height: 6px;
  top: 80%;
  left: 20%;
  animation-delay: -10s;
}

.jjhpgs-notfound-particle:nth-child(4) {
  width: 10px;
  height: 10px;
  top: 30%;
  left: 70%;
  animation-delay: -2s;
}

.jjhpgs-notfound-particle:nth-child(5) {
  width: 14px;
  height: 14px;
  top: 50%;
  left: 40%;
  animation-delay: -8s;
}

@keyframes jjhpgs-particle-float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .jjhpgs-notfound-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .jjhpgs-notfound-text {
    text-align: center;
  }
  
  .jjhpgs-notfound-text h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .jjhpgs-notfound-main {
    margin-top: 195px;
  }

  .jjhpgs-notfound-container {
    padding: 1rem;
  }
  
  .jjhpgs-notfound-text h1 {
    font-size: 2rem;
  }
  
  .jjhpgs-notfound-text p {
    font-size: 1rem;
  }
  
  .jjhpgs-notfound-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .jjhpgs-notfound-actions {
    flex-direction: column;
  }
  
  .jjhpgs-notfound-animation {
    width: 250px;
    height: 250px;
  }
  
  .jjhpgs-notfound-orb-1 {
    width: 200px;
    height: 200px;
  }
  
  .jjhpgs-notfound-orb-2 {
    width: 160px;
    height: 160px;
  }
  
  .jjhpgs-notfound-orb-3 {
    width: 120px;
    height: 120px;
  }
  
  .jjhpgs-notfound-center {
    width: 80px;
    height: 80px;
  }
  
  .jjhpgs-notfound-center i {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .jjhpgs-notfound-container {
    padding: 0.5rem;
  }
  
  .jjhpgs-notfound-text h1 {
    font-size: 1.75rem;
  }
  
  .jjhpgs-notfound-text p {
    font-size: 0.9rem;
  }
  
  .jjhpgs-notfound-home,
  .jjhpgs-notfound-support {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  
  .jjhpgs-notfound-feature i {
    font-size: 1.5rem;
  }
  
  .jjhpgs-notfound-feature span {
    font-size: 0.8rem;
  }
  
  .jjhpgs-notfound-tips h3 {
    font-size: 1.25rem;
  }
  
  .jjhpgs-notfound-tip {
    padding: 0.5rem;
  }
  
  .jjhpgs-notfound-tip i {
    font-size: 1rem;
  }
  
  .jjhpgs-notfound-tip span {
    font-size: 0.85rem;
  }
  
  .jjhpgs-notfound-animation {
    width: 200px;
    height: 200px;
  }
  
  .jjhpgs-notfound-orb-1 {
    width: 160px;
    height: 160px;
  }
  
  .jjhpgs-notfound-orb-2 {
    width: 130px;
    height: 130px;
  }
  
  .jjhpgs-notfound-orb-3 {
    width: 100px;
    height: 100px;
  }
  
  .jjhpgs-notfound-center {
    width: 60px;
    height: 60px;
  }
  
  .jjhpgs-notfound-center i {
    font-size: 2rem;
  }
}