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

:root {
    --ji-deep-ocean: #1a1f2e;
    --ji-coral-reef: #ff6b6b;
    --ji-gold-sand: #feca57;
    --ji-aqua-marine: #48dbfb;
    --ji-forest-green: #1dd1a1;
    --ji-text-light: #f7f7f7;
    --ji-text-muted: #b8b8b8;
    --ji-overlay-dark: rgba(26, 31, 46, 0.85);
    --ji-card-bg: rgba(255, 255, 255, 0.08);
    --ji-border-glow: rgba(72, 219, 251, 0.3);
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background: linear-gradient(135deg, var(--ji-deep-ocean) 0%, #2d3548 100%);
    color: var(--ji-text-light);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/ji-core/ji-imgs/background-visual.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

main {
    background: var(--ji-overlay-dark);
    margin: 0 auto;
    max-width: 1400px;
    backdrop-filter: blur(10px);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(45deg, var(--ji-gold-sand), var(--ji-aqua-marine));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--ji-text-light);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--ji-gold-sand);
}

.ji__header_navigation {
    background: rgba(26, 31, 46, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(72, 219, 251, 0.3);
    padding: 1rem 0;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1000;
}

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

.ji__header_logo {
    width: 68px;
    height: 68px;
    transition: transform 0.3s ease;
}

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

.ji__header_nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.ji__header_navitem {
    color: #f7f7f7;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ji__header_navitem::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #48dbfb, transparent);
    transition: left 0.5s ease;
}

.ji__header_navitem:hover::before {
    left: 100%;
}

.ji__header_navitem:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #48dbfb;
}

.ji__header_menubutton {
    display: none;
    background: none;
    border: none;
    color: #f7f7f7;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
    z-index: 1001;
}

.ji__header_menubutton:hover {
    background: rgba(255, 255, 255, 0.1);
}

.ji__welcome_hero {
    padding: 6rem 2rem;
    text-align: center;
}

.ji__welcome_subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--ji-text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ji__welcome_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.ji__welcome_card {
    background: var(--ji-card-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    flex: 1 1 200px;
    max-width: 220px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ji__welcome_card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--ji-coral-reef), var(--ji-aqua-marine), var(--ji-forest-green));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ji__welcome_card:hover::before {
    opacity: 1;
}

.ji__welcome_card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--ji-border-glow);
}

.ji__welcome_card .material-icons {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--ji-aqua-marine);
}

.ji__welcome_card p {
    margin-bottom: 1.5rem;
    min-height: 3rem;
    font-weight: 500;
}

.ji__welcome_cardlink {
    color: var(--ji-gold-sand);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--ji-gold-sand);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.ji__welcome_cardlink:hover {
    background: var(--ji-gold-sand);
    color: var(--ji-deep-ocean);
}

.ji__features_showcase {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

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

.ji__features_item {
    background: var(--ji-card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    flex: 1 1 250px;
    max-width: 280px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.ji__features_item:hover {
    transform: translateY(-5px);
    border-color: var(--ji-forest-green);
    box-shadow: 0 10px 30px rgba(29, 209, 161, 0.2);
}

.ji__features_item .material-icons {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--ji-forest-green);
}

.ji__features_item h3 {
    margin-bottom: 1rem;
    min-height: 3.5rem;
}

.ji__features_item p {
    color: var(--ji-text-muted);
    min-height: 4rem;
}

.ji__about_platform {
    padding: 6rem 2rem;
}

.ji__about_container {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.ji__about_visual {
    flex: 1;
    text-align: center;
}

.ji__about_visual img {
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.ji__about_visual img:hover {
    transform: rotate(-5deg) scale(1.05);
}

.ji__about_content {
    flex: 1;
}

.ji__about_content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.ji__about_content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.ji__about_highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ji__about_highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ji-card-bg);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    flex: 1 1 150px;
}

.ji__about_highlight .material-icons {
    color: var(--ji-coral-reef);
    font-size: 1.2rem;
}

.ji__about_gamelink {
    display: inline-block;
    background: linear-gradient(45deg, var(--ji-coral-reef), var(--ji-gold-sand));
    color: var(--ji-deep-ocean);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.ji__journey_container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.ji__journey_content {
    flex: 1;
}

.ji__journey_content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.ji__journey_content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.ji__journey_milestones {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ji__journey_milestone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ji-card-bg);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    flex: 1 1 150px;
}

.ji__journey_milestone .material-icons {
    color: var(--ji-aqua-marine);
    font-size: 1.2rem;
}

.ji__journey_gamelink {
    display: inline-block;
    background: linear-gradient(45deg, var(--ji-aqua-marine), var(--ji-forest-green));
    color: var(--ji-deep-ocean);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ji__journey_gamelink:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(72, 219, 251, 0.3);
}

.ji__journey_visual {
    flex: 1;
    text-align: center;
}

.ji__journey_visual img {
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.ji__journey_visual img:hover {
    transform: rotate(5deg) scale(1.05);
}

.ji__games_showcase {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

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

.ji__games_item {
    background: var(--ji-card-bg);
    border-radius: 15px;
    padding: 1.5rem;
    flex: 1 1 300px;
    min-height: 380px;
    max-width: 320px;
    text-align: center;
    position: relative;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    overflow: hidden;
}

.ji__games_item:hover {
    transform: translateY(-10px);
    border-color: var(--ji-border-glow);
    box-shadow: 0 15px 40px rgba(72, 219, 251, 0.2);
}

.ji__games_badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--ji-coral-reef);
    color: var(--ji-deep-ocean);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.ji__games_item img {
    width: 100%;
    max-width: 320px;
    height: 100%;
    max-height: 210px;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.ji__games_item:hover img {
    transform: scale(1.05);
}

.ji__games_item h3 {
    margin-bottom: 0.5rem;
    min-height: 3rem;
}

.ji__games_item .material-icons {
    color: var(--ji-gold-sand);
    margin-bottom: 1rem;
}

.ji__games_link {
    display: inline-block;
    background: var(--ji-aqua-marine);
    color: var(--ji-deep-ocean);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ji__games_link:hover {
    background: var(--ji-gold-sand);
    transform: scale(1.05);
}

.ji__faq_section {
    padding: 6rem 2rem;
}

.ji__faq_columns {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.ji__faq_column {
    flex: 1 1 250px;
    background: var(--ji-card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.ji__faq_column:hover {
    border-color: var(--ji-border-glow);
    transform: translateY(-5px);
}

.ji__faq_column h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--ji-aqua-marine);
    min-height: 3rem;
}

.ji__faq_item {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.ji__faq_question {
    font-weight: 600;
    cursor: pointer;
    padding: 0.8rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.ji__faq_question:hover {
    color: var(--ji-aqua-marine);
}

.ji__faq_question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.ji__faq_item.active .ji__faq_question::after {
    transform: translateY(-50%) rotate(45deg);
}

.ji__faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--ji-text-muted);
}

.ji__faq_item.active .ji__faq_answer {
    max-height: 500px;
    padding-top: 0.5rem;
}

.ji__faq_contactlink {
    display: block;
    text-align: center;
    margin-top: 3rem;
    color: var(--ji-gold-sand);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid var(--ji-gold-sand);
    border-radius: 30px;
    transition: all 0.3s ease;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.ji__faq_contactlink:hover {
    background: var(--ji-gold-sand);
    color: var(--ji-deep-ocean);
    transform: translateY(-3px);
}

.ji__reviews_display {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

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

.ji__reviews_card {
    background: var(--ji-card-bg);
    padding: 2rem;
    border-radius: 15px;
    flex: 1 1 300px;
    max-width: 320px;
    position: relative;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.ji__reviews_card:hover {
    transform: translateY(-8px);
    border-color: var(--ji-border-glow);
    box-shadow: 0 15px 35px rgba(72, 219, 251, 0.15);
}

.ji__reviews_avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--ji-aqua-marine);
}

.ji__reviews_card h3 {
    margin-bottom: 0.5rem;
    text-align: center;
}

.ji__reviews_rating {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.ji__reviews_rating .material-icons {
    color: var(--ji-gold-sand);
    font-size: 1.2rem;
}

.ji__reviews_text {
    text-align: center;
    margin-bottom: 1rem;
    font-style: italic;
    min-height: 4rem;
}

.ji__reviews_location, .ji__reviews_date {
    display: block;
    text-align: center;
    color: var(--ji-text-muted);
    font-size: 0.9rem;
}

.ji__reviews_icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--ji-forest-green);
    opacity: 0.5;
    font-size: 2rem;
}

.ji__responsible_gaming {
    padding: 6rem 2rem;
}

.ji__responsible_container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ji__responsible_description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.ji__responsible_description a {
    color: var(--ji-aqua-marine);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ji__responsible_description a:hover {
    color: var(--ji-gold-sand);
}

.ji__responsible_link {
    display: inline-block;
    background: var(--ji-forest-green);
    color: var(--ji-deep-ocean);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.ji__responsible_link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(29, 209, 161, 0.3);
}

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

.ji__responsible_partner {
    width: 120px;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: var(--ji-forest-green);
    padding: 5px;
    border-radius: 5px;
}

.ji__responsible_partner:hover {
    transform: scale(1.1);
}

.ji__responsible_age {
    width: 60px;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    border: 2px solid var(--ji-coral-reef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--ji-coral-reef);
}

.ji__contact_section {
    padding: 6rem 2rem;
    position: relative;
}

.ji__contact_animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.ji__contact_visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(72, 219, 251, 0.1) 50%, transparent 70%);
    animation: contactShimmer 8s ease-in-out infinite;
}

@keyframes contactShimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.ji__contact_container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.ji__contact_content {
    flex: 1;
}

.ji__contact_content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.ji__contact_content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--ji-text-muted);
}

.ji__contact_form {
    flex: 1;
    background: var(--ji-card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--ji-border-glow);
}

.ji__contact_field {
    position: relative;
    margin-bottom: 2rem;
}

.ji__contact_icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ji-aqua-marine);
    z-index: 2;
}

.ji__contact_input, .ji__contact_textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--ji-text-light);
    font-size: 16px;
    font-family: 'IBM Plex Sans', sans-serif;
    transition: all 0.3s ease;
    min-height: 44px;
}

.ji__contact_textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 1rem;
}

.ji__contact_input:focus, .ji__contact_textarea:focus {
    outline: none;
    border-color: var(--ji-aqua-marine);
    background: rgba(255, 255, 255, 0.08);
}

.ji__contact_label {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ji-text-muted);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--ji-card-bg);
    padding: 0 0.5rem;
}

.ji__contact_textarea + .ji__contact_label {
    top: 1.5rem;
    transform: none;
}

.ji__contact_input:focus + .ji__contact_label,
.ji__contact_input:not(:placeholder-shown) + .ji__contact_label,
.ji__contact_textarea:focus + .ji__contact_label,
.ji__contact_textarea:not(:placeholder-shown) + .ji__contact_label {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.8rem;
    color: var(--ji-aqua-marine);
}

.ji__contact_hint {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    font-size: 0.8rem;
    color: var(--ji-coral-reef);
    padding: 0.3rem 0;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.ji__contact_input:focus ~ .ji__contact_hint,
.ji__contact_textarea:focus ~ .ji__contact_hint {
    opacity: 1;
    transform: translateY(0);
}

.ji__contact_checkarea {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2.5rem;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.ji__contact_checkbox {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    margin: 0;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

.ji__contact_checkbox + .ji__contact_checklabel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--ji-text-muted);
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.ji__contact_checkbox:checked + .ji__contact_checklabel::before {
    background: var(--ji-forest-green);
    border-color: var(--ji-forest-green);
}

.ji__contact_checkbox:checked + .ji__contact_checklabel::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ji-deep-ocean);
    font-size: 14px;
    font-weight: bold;
}

.ji__contact_checklabel {
    cursor: pointer;
    color: var(--ji-text-muted);
    line-height: 1.4;
}

.ji__contact_checklabel a {
    color: var(--ji-aqua-marine);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ji__contact_checklabel a:hover {
    color: var(--ji-gold-sand);
}

.ji__contact_checkbox:focus + .ji__contact_checklabel::before {
    border-color: var(--ji-aqua-marine);
    box-shadow: 0 0 0 2px rgba(72, 219, 251, 0.3);
}

.ji__contact_submit {
    width: 100%;
    background: linear-gradient(45deg, var(--ji-aqua-marine), var(--ji-forest-green));
    color: var(--ji-deep-ocean);
    border: none;
    padding: 1.2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
    min-height: 44px;
}

.ji__contact_submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(72, 219, 251, 0.3);
}

.ji__contact_submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.ji__footer_section {
    background: var(--ji-overlay-dark);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--ji-border-glow);
    padding: 3rem 0 1rem;
    width: 100%;
}

.ji__footer_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ji__footer_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.ji__footer_sitename {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ji-text-light);
    text-decoration: none;
}

.ji__footer_nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ji__footer_link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ji-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.ji__footer_link:hover {
    color: var(--ji-aqua-marine);
    background: var(--ji-card-bg);
}

.ji__footer_link .material-icons {
    font-size: 1.2rem;
}

.ji__footer_secondary {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ji__footer_copyright {
    color: var(--ji-text-muted);
    font-size: 0.9rem;
}

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

.age-confirmation-dialog {
    background: var(--ji-deep-ocean);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--ji-coral-reef);
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
    overflow-y: auto;
}

.age-confirmation-dialog h2 {
    color: var(--ji-coral-reef);
    margin-bottom: 1rem;
}

.age-confirmation-dialog p {
    margin-bottom: 2rem;
    color: var(--ji-text-muted);
}

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

.age-confirm-button, .age-decline-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
    min-height: 44px;
}

.age-confirm-button {
    background: var(--ji-forest-green);
    color: var(--ji-deep-ocean);
}

.age-confirm-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(29, 209, 161, 0.3);
}

.age-decline-button {
    background: transparent;
    color: var(--ji-text-muted);
    border: 2px solid var(--ji-text-muted);
}

.age-decline-button:hover {
    color: var(--ji-coral-reef);
    border-color: var(--ji-coral-reef);
    transform: translateY(-3px);
}

.cookie-notification-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ji-deep-ocean);
    padding: 1.5rem 2rem;
    border-top: 2px solid var(--ji-gold-sand);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-notification-bar.show {
    transform: translateY(0);
}

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

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

.cookie-content .material-icons {
    color: var(--ji-gold-sand);
    font-size: 2rem;
}

.cookie-content p {
    color: var(--ji-text-light);
    margin: 0;
}

.cookie-content a {
    color: var(--ji-aqua-marine);
    text-decoration: none;
}

.cookie-content a:hover {
    color: var(--ji-gold-sand);
}

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

.cookie-accept, .cookie-decline {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
    min-height: 44px;
}

.cookie-accept {
    background: var(--ji-gold-sand);
    color: var(--ji-deep-ocean);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 202, 87, 0.3);
}

.cookie-decline {
    background: transparent;
    color: var(--ji-text-muted);
    border: 2px solid var(--ji-text-muted);
}

.cookie-decline:hover {
    color: var(--ji-coral-reef);
    border-color: var(--ji-coral-reef);
    transform: translateY(-2px);
}

.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: 10001;
}

.contact-form-overlay.show {
    display: flex;
}

.feedback-modal-window {
    background: var(--ji-deep-ocean);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--ji-forest-green);
    box-shadow: 0 20px 60px rgba(29, 209, 161, 0.3);
    position: relative;
}

.feedback-modal-window .material-icons {
    font-size: 4rem;
    color: var(--ji-forest-green);
    margin-bottom: 1rem;
}

.feedback-modal-window h2 {
    color: var(--ji-text-light);
    margin-bottom: 1rem;
}

.feedback-modal-window p {
    margin-bottom: 2rem;
    color: var(--ji-text-muted);
    line-height: 1.6;
}

.modal-close-button {
    background: var(--ji-forest-green);
    color: var(--ji-deep-ocean);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
    min-height: 44px;
}

.modal-close-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(29, 209, 161, 0.3);
}

.ji__subscribe_modaloverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    backdrop-filter: blur(10px);
    overflow-y: auto;
}

.ji__subscribe_modaldialog {
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3548 100%);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 2px solid rgba(72, 219, 251, 0.5);
    box-shadow: 0 20px 60px rgba(72, 219, 251, 0.3);
    animation: ji__subscribe_modalappear 0.5s ease-out;
    overflow-y: auto;
}

@keyframes ji__subscribe_modalappear {
    0% { transform: scale(0.8) translateY(-50px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.ji__subscribe_modalclose {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #b8b8b8;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ji__subscribe_modalclose:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.ji__subscribe_modalcontent {
    text-align: center;
}

.ji__subscribe_mainicon {
    font-size: 4rem;
    color: #48dbfb;
    margin-bottom: 1.5rem;
    animation: ji__subscribe_iconpulse 2s ease-in-out infinite;
}

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

.ji__subscribe_modalcontent h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: #f7f7f7;
    margin-bottom: 1rem;
}

.ji__subscribe_modalcontent p {
    color: #b8b8b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ji__subscribe_modalform {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.ji__subscribe_modalfield {
    position: relative;
}

.ji__subscribe_modalicon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #48dbfb;
    z-index: 2;
}

.ji__subscribe_modalinput {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 10px;
    color: #f7f7f7;
    font-size: 16px;
    font-family: 'IBM Plex Sans', sans-serif;
    transition: all 0.3s ease;
    min-height: 44px;
}

.ji__subscribe_modalinput:focus {
    outline: none;
    border-color: #48dbfb;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(72, 219, 251, 0.1);
}

.ji__subscribe_modalinput::placeholder {
    color: #b8b8b8;
}

.ji__subscribe_modalhint {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    font-size: 0.8rem;
    color: #ff6b6b;
    padding: 0.3rem 0;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.ji__subscribe_modalinput:focus ~ .ji__subscribe_modalhint {
    opacity: 1;
    transform: translateY(0);
}

.ji__subscribe_modalcheckarea {
    position: relative;
    padding-left: 2.5rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    text-align: left;
}

.ji__subscribe_modalcheckbox {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    margin: 0;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

.ji__subscribe_modalcheckbox + .ji__subscribe_modalchecklabel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #b8b8b8;
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.ji__subscribe_modalcheckbox:checked + .ji__subscribe_modalchecklabel::before {
    background: #1dd1a1;
    border-color: #1dd1a1;
}

.ji__subscribe_modalcheckbox:checked + .ji__subscribe_modalchecklabel::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #1a1f2e;
    font-size: 14px;
    font-weight: bold;
}

.ji__subscribe_modalchecklabel {
    cursor: pointer;
    color: #b8b8b8;
    line-height: 1.4;
    font-size: 0.9rem;
}

.ji__subscribe_modalchecklabel a {
    color: #48dbfb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ji__subscribe_modalchecklabel a:hover {
    color: #1dd1a1;
}

.ji__subscribe_modalcheckbox:focus + .ji__subscribe_modalchecklabel::before {
    border-color: #48dbfb;
    box-shadow: 0 0 0 2px rgba(72, 219, 251, 0.3);
}

.ji__subscribe_modalsubmit {
    width: 100%;
    background: linear-gradient(45deg, #48dbfb, #1dd1a1);
    color: #1a1f2e;
    border: none;
    padding: 1.2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
    min-height: 44px;
}

.ji__subscribe_modalsubmit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(72, 219, 251, 0.3);
}

.ji__subscribe_modalsubmit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.ji__subscribe_modallink {
    color: #48dbfb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.ji__subscribe_modallink:hover {
    color: #1dd1a1;
}

.ji__subscribe_successsection {
    text-align: center;
}

.ji__subscribe_successicon {
    font-size: 4rem;
    color: #1dd1a1;
    margin-bottom: 1.5rem;
    animation: ji__subscribe_successpulse 2s ease-in-out infinite;
}

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

.ji__subscribe_successsection h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: #f7f7f7;
    margin-bottom: 1rem;
}

.ji__subscribe_successsection p {
    color: #b8b8b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ji__subscribe_successactions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.ji__subscribe_successclose {
    background: #48dbfb;
    color: #1a1f2e;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
}

.ji__subscribe_successclose:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(72, 219, 251, 0.3);
}

.ji__subscribe_successunsubscribe {
    background: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
}

.ji__subscribe_successunsubscribe:hover {
    background: #ff6b6b;
    color: #1a1f2e;
    transform: translateY(-3px);
}

.ji__subscribe_unsubscribeoverlay {
    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: 10003;
}

.ji__subscribe_unsubscribecontent {
    background: #1a1f2e;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    border: 2px solid #1dd1a1;
    box-shadow: 0 20px 60px rgba(29, 209, 161, 0.3);
}

.ji__subscribe_unsubscribeicon {
    font-size: 4rem;
    color: #1dd1a1;
    margin-bottom: 1.5rem;
}

.ji__subscribe_unsubscribecontent h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: #f7f7f7;
    margin-bottom: 1rem;
}

.ji__subscribe_unsubscribecontent p {
    color: #b8b8b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ji__subscribe_unsubscribeclose {
    background: #48dbfb;
    color: #1a1f2e;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
}

.ji__subscribe_unsubscribeclose:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(72, 219, 251, 0.3);
}

@media (max-width: 480px) {
    .ji__subscribe_modaldialog {
        padding: 2rem 0.5rem;
        margin: 0 0.3rem;
        width: 95%;
    }
    
    .ji__subscribe_modalcontent h2 {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .ji__subscribe_modalcontent p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .ji__subscribe_modalinput {
        padding: 1rem 1rem 1rem 2.5rem;
        font-size: 14px;
    }
    
    .ji__subscribe_modalchecklabel {
        font-size: 0.8rem;
    }
    
    .ji__subscribe_unsubscribecontent {
        margin: 1rem;
        padding: 2rem;
    }

    .age-verification-overlay,
    .ji__subscribe_modaloverlay {
        align-items: flex-start;
    }
}

@media (max-width: 1024px) {
    .ji__about_container,
    .ji__journey_container,
    .ji__contact_container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .ji__about_content h2,
    .ji__journey_content h2 {
        text-align: center;
    }
    
    .ji__faq_columns {
        gap: 1.5rem;
    }
    
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .ji__header_nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ji-overlay-dark);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid var(--ji-border-glow);
    }
    
    .ji__header_nav.show {
        display: flex;
    }
    
    .ji__header_container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .ji__header_menubutton {
        display: block;
    }
    
    .ji__welcome_hero,
    .ji__features_showcase,
    .ji__about_platform,
    .ji__games_showcase,
    .ji__faq_section,
    .ji__reviews_display,
    .ji__responsible_gaming,
    .ji__contact_section {
        padding: 4rem 1rem;
    }
    
    .ji__welcome_cards,
    .ji__features_grid,
    .ji__games_grid,
    .ji__reviews_grid {
        gap: 1.5rem;
    }
    
    .ji__responsible_partners {
        gap: 1.5rem;
    }
    
    .ji__footer_main {
        flex-direction: column;
        text-align: center;
    }
    
    .ji__footer_nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .ji__welcome_hero,
    .ji__features_showcase,
    .ji__about_platform,
    .ji__games_showcase,
    .ji__faq_section,
    .ji__reviews_display,
    .ji__responsible_gaming,
    .ji__contact_section {
        padding: 3rem 0.5rem;
    }
    
    .ji__header_container,
    .ji__footer_container {
        padding: 0 1rem;
    }
    
    .ji__welcome_card,
    .ji__features_item,
    .ji__games_item,
    .ji__reviews_card {
        flex: 1 1 100%;
        max-width: none;
    }
    
    .ji__about_highlights,
    .ji__journey_milestones {
        gap: 0.8rem;
    }
    
    .ji__about_highlight,
    .ji__journey_milestone {
        flex: 1 1 100%;
    }
    
    .ji__faq_columns {
        flex-direction: column;
    }
    
    .ji__faq_column {
        flex: 1 1 100%;
    }
    
    .ji__responsible_partners {
        flex-direction: column;
        align-items: center;
    }
    
    .ji__contact_form {
        padding: 1.5rem;
    }
    
    .age-confirmation-dialog,
    .feedback-modal-window {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-verification-buttons {
        flex-direction: column;
    }
    
    .cookie-notification-bar {
        padding: 1rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-accept,
    .cookie-decline {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .ji__header_container,
    .ji__footer_container {
        padding: 0 0.5rem;
    }
    
    .ji__welcome_hero,
    .ji__features_showcase,
    .ji__about_platform,
    .ji__games_showcase,
    .ji__faq_section,
    .ji__reviews_display,
    .ji__responsible_gaming,
    .ji__contact_section {
        padding: 2rem 0.3rem;
    }
    
    .ji__welcome_card,
    .ji__features_item,
    .ji__games_item,
    .ji__reviews_card {
        padding: 1.5rem 1rem;
    }
    
    .ji__contact_form {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .ji__welcome_card:hover,
    .ji__features_item:hover,
    .ji__games_item:hover,
    .ji__reviews_card:hover,
    .ji__faq_column:hover {
        transform: none;
    }
    
    .ji__about_visual img:hover,
    .ji__journey_visual img:hover {
        transform: none;
    }
    
    .ji__welcome_cardlink:hover,
    .ji__about_gamelink:hover,
    .ji__journey_gamelink:hover,
    .ji__games_link:hover,
    .ji__faq_contactlink:hover,
    .ji__responsible_link:hover,
    .ji__contact_submit:hover:not(:disabled),
    .age-confirm-button:hover,
    .age-decline-button:hover,
    .cookie-accept:hover,
    .cookie-decline:hover,
    .modal-close-button:hover {
        transform: none;
    }
}

.jipg__privacy_main {
    background: rgba(26, 31, 46, 0.95);
    min-height: 100vh;
    padding: 2rem 0;
}

.jipg__privacy_hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jipg__privacy_container h1 {
    font-family: 'Lora', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #feca57, #48dbfb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jipg__privacy_subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.jipg__privacy_content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.jipg__privacy_item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.jipg__privacy_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(72, 219, 251, 0.1), transparent);
    transition: left 0.6s ease;
}

.jipg__privacy_item:hover::before {
    left: 100%;
}

.jipg__privacy_item:hover {
    border-color: rgba(72, 219, 251, 0.3);
    transform: translateY(-5px);
}

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

.jipg__privacy_header .material-icons {
    font-size: 2.5rem;
    color: #48dbfb;
}

.jipg__privacy_header h2 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    color: #f7f7f7;
    margin: 0;
}

.jipg__privacy_item p {
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.jipg__privacy_item a {
    color: #48dbfb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jipg__privacy_item a:hover {
    color: #feca57;
}

@media (max-width: 768px) {
    .jipg__privacy_hero {
        padding: 0 1.5rem;
    }
    
    .jipg__privacy_container h1 {
        font-size: 2.5rem;
    }
    
    .jipg__privacy_subtitle {
        font-size: 1.1rem;
    }
    
    .jipg__privacy_item {
        padding: 2rem;
    }
    
    .jipg__privacy_header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .jipg__privacy_hero {
        padding: 0 0.3rem;
    }
    
    .jipg__privacy_container h1 {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    .jipg__privacy_subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .jipg__privacy_item {
        padding: 1.5rem 0.5rem;
        margin: 0 0.3rem;
    }
    
    .jipg__privacy_item p {
        font-size: 0.9rem;
    }
    
    .jipg__privacy_header h2 {
        font-size: 1.5rem;
    }
    
    .jipg__privacy_item:hover {
        transform: none;
    }
}

.jipg__terms_main {
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3548 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.jipg__terms_hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jipg__terms_container h1 {
    font-family: 'Lora', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff6b6b, #1dd1a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jipg__terms_subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.jipg__terms_content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.jipg__terms_item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.jipg__terms_item:nth-child(odd) {
    border-left-color: #ff6b6b;
}

.jipg__terms_item:nth-child(even) {
    border-left-color: #1dd1a1;
}

.jipg__terms_item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.jipg__terms_header .material-icons {
    font-size: 2.5rem;
}

.jipg__terms_item:nth-child(odd) .jipg__terms_header .material-icons {
    color: #ff6b6b;
}

.jipg__terms_item:nth-child(even) .jipg__terms_header .material-icons {
    color: #1dd1a1;
}

.jipg__terms_header h2 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    color: #f7f7f7;
    margin: 0;
}

.jipg__terms_item p {
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.jipg__terms_item a {
    color: #48dbfb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jipg__terms_item a:hover {
    color: #feca57;
}

@media (max-width: 768px) {
    .jipg__terms_hero {
        padding: 0 1.5rem;
    }
    
    .jipg__terms_container h1 {
        font-size: 2.5rem;
    }
    
    .jipg__terms_subtitle {
        font-size: 1.1rem;
    }
    
    .jipg__terms_item {
        padding: 2rem;
    }
    
    .jipg__terms_header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .jipg__terms_hero {
        padding: 0 0.3rem;
    }
    
    .jipg__terms_container h1 {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    .jipg__terms_subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .jipg__terms_item {
        padding: 1.5rem 0.5rem;
        margin: 0 0.3rem;
        transform: none !important;
    }
    
    .jipg__terms_item p {
        font-size: 0.9rem;
    }
    
    .jipg__terms_header h2 {
        font-size: 1.5rem;
    }
    
    .jipg__terms_item:hover {
        transform: none;
    }
}

.jipg__cookies_main {
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3548 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.jipg__cookies_hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jipg__cookies_container h1 {
    font-family: 'Lora', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #feca57, #1dd1a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jipg__cookies_subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.jipg__cookies_item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 20px;
    flex: 1 1 350px;
    max-width: 500px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.jipg__cookies_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #feca57, #1dd1a1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.jipg__cookies_item:hover::before {
    transform: scaleX(1);
}

.jipg__cookies_item:hover {
    transform: translateY(-10px);
    border-color: rgba(254, 202, 87, 0.3);
    box-shadow: 0 15px 40px rgba(254, 202, 87, 0.2);
}

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

.jipg__cookies_header .material-icons {
    font-size: 2.5rem;
    color: #feca57;
}

.jipg__cookies_header h2 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    color: #f7f7f7;
    margin: 0;
}

.jipg__cookies_item p {
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.jipg__cookies_item a {
    color: #48dbfb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jipg__cookies_item a:hover {
    color: #feca57;
}

@media (max-width: 768px) {
    .jipg__cookies_hero {
        padding: 0 1.5rem;
    }
    
    .jipg__cookies_container h1 {
        font-size: 2.5rem;
    }
    
    .jipg__cookies_subtitle {
        font-size: 1.1rem;
    }
    
    .jipg__cookies_item {
        padding: 2rem;
    }
    
    .jipg__cookies_header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .jipg__cookies_hero {
        padding: 0 0.3rem;
    }
    
    .jipg__cookies_container h1 {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    .jipg__cookies_subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .jipg__cookies_item {
        padding: 1.5rem 0.5rem;
        margin: 0 0.3rem;
        flex: 1 1 100%;
    }
    
    .jipg__cookies_item p {
        font-size: 0.9rem;
    }
    
    .jipg__cookies_header h2 {
        font-size: 1.5rem;
    }
    
    .jipg__cookies_item:hover {
        transform: none;
    }
}

.jipg__gambling_main {
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3548 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.jipg__gambling_hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jipg__gambling_container h1 {
    font-family: 'Lora', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff6b6b, #48dbfb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jipg__gambling_subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.jipg__gambling_item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.jipg__gambling_item:hover {
    border-color: rgba(255, 107, 107, 0.3);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

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

.jipg__gambling_header .material-icons {
    font-size: 2.5rem;
    color: #ff6b6b;
}

.jipg__gambling_header h2 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    color: #f7f7f7;
    margin: 0;
}

.jipg__gambling_item p {
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.jipg__gambling_item a {
    color: #48dbfb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jipg__gambling_item a:hover {
    color: #ff6b6b;
}

.jipg__gambling_resources {
    background: rgba(255, 107, 107, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.jipg__gambling_resources h3 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: #f7f7f7;
    text-align: center;
    margin-bottom: 2rem;
}

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

.jipg__gambling_link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #48dbfb;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border: 1px solid #48dbfb;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.jipg__gambling_link:hover {
    background: #48dbfb;
    color: #1a1f2e;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .jipg__gambling_hero {
        padding: 0 1.5rem;
    }
    
    .jipg__gambling_container h1 {
        font-size: 2.5rem;
    }
    
    .jipg__gambling_subtitle {
        font-size: 1.1rem;
    }
    
    .jipg__gambling_content {
        grid-template-columns: 1fr;
    }
    
    .jipg__gambling_item {
        padding: 2rem;
    }
    
    .jipg__gambling_header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .jipg__gambling_links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .jipg__gambling_hero {
        padding: 0 0.3rem;
    }
    
    .jipg__gambling_container h1 {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    .jipg__gambling_subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .jipg__gambling_item {
        padding: 1.5rem 0.5rem;
        margin: 0 0.3rem;
    }
    
    .jipg__gambling_item p {
        font-size: 0.9rem;
    }
    
    .jipg__gambling_header h2 {
        font-size: 1.5rem;
    }
    
    .jipg__gambling_resources {
        padding: 1.5rem 0.5rem;
        margin: 0 0.3rem;
    }
    
    .jipg__gambling_item:hover {
        transform: none;
    }
}

.jipg__404_main {
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3548 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.jipg__404_hero {
    max-width: 800px;
    width: 100%;
}

.jipg__404_container {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.jipg__404_content {
    flex: 1;
    text-align: center;
    z-index: 2;
}

.jipg__404_icon {
    font-size: 8rem;
    color: #ff6b6b;
    margin-bottom: 2rem;
    animation: jipg__404_bounce 3s ease-in-out infinite;
}

@keyframes jipg__404_bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.jipg__404_content h1 {
    font-family: 'Lora', serif;
    font-size: 4rem;
    color: #f7f7f7;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jipg__404_text {
    color: #b8b8b8;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.jipg__404_link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #48dbfb, #1dd1a1);
    color: #1a1f2e;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.jipg__404_link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(72, 219, 251, 0.3);
}

.jipg__404_animation {
    flex: 1;
    position: relative;
    height: 300px;
}

.jipg__404_orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    opacity: 0.3;
    animation: jipg__404_float 6s ease-in-out infinite;
}

.jipg__404_orb-1 {
    width: 100px;
    height: 100px;
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.jipg__404_orb-2 {
    width: 150px;
    height: 150px;
    top: 100px;
    right: 15px;
    background: linear-gradient(45deg, #48dbfb, #1dd1a1);
    animation-delay: 2s;
}

.jipg__404_orb-3 {
    width: 80px;
    height: 80px;
    bottom: 40px;
    left: 100px;
    background: linear-gradient(45deg, #feca57, #ff6b6b);
    animation-delay: 4s;
}

@keyframes jipg__404_float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

@media (max-width: 768px) {
    .jipg__404_container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .jipg__404_icon {
        font-size: 6rem;
    }
    
    .jipg__404_content h1 {
        font-size: 3rem;
    }
    
    .jipg__404_text {
        font-size: 1.1rem;
    }
    
    .jipg__404_animation {
        height: 200px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .jipg__404_main {
        padding: 1rem 0.3rem;
    }
    
    .jipg__404_icon {
        font-size: 5rem;
    }
    
    .jipg__404_content h1 {
        font-size: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .jipg__404_text {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .jipg__404_link {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .jipg__404_orb-1 {
        width: 60px;
        height: 60px;
        left: 20px;
    }
    
    .jipg__404_orb-2 {
        width: 100px;
        height: 100px;
        right: 52px;
    }
    
    .jipg__404_orb-3 {
        width: 50px;
        height: 50px;
        left: 50px;
    }
    
    @keyframes jipg__404_bounce {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-10px) scale(1.05); }
    }
    
    @keyframes jipg__404_float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        33% { transform: translateY(-10px) rotate(120deg); }
        66% { transform: translateY(5px) rotate(240deg); }
    }
}

.jipg__subscribe_main {
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3548 100%);
    min-height: 100vh;
}

.jipg__subscribe_hero {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

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

.jipg__subscribe_content h1 {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #48dbfb, #1dd1a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jipg__subscribe_subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.jipg__subscribe_formsection {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(72, 219, 251, 0.3);
}

.jipg__subscribe_form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.jipg__subscribe_field {
    position: relative;
}

.jipg__subscribe_icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #48dbfb;
    z-index: 2;
}

.jipg__subscribe_input {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 10px;
    color: #f7f7f7;
    font-size: 16px;
    font-family: 'IBM Plex Sans', sans-serif;
    transition: all 0.3s ease;
    min-height: 44px;
}

.jipg__subscribe_input:focus {
    outline: none;
    border-color: #48dbfb;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(72, 219, 251, 0.1);
}

.jipg__subscribe_input::placeholder {
    color: #b8b8b8;
}

.jipg__subscribe_hint {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    font-size: 0.8rem;
    color: #ff6b6b;
    padding: 0.3rem 0;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.jipg__subscribe_input:focus ~ .jipg__subscribe_hint {
    opacity: 1;
    transform: translateY(0);
}

.jipg__subscribe_checkarea {
    position: relative;
    padding-left: 2.5rem;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.jipg__subscribe_checkbox {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    margin: 0;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

.jipg__subscribe_checkbox + .jipg__subscribe_checklabel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #b8b8b8;
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.jipg__subscribe_checkbox:checked + .jipg__subscribe_checklabel::before {
    background: #1dd1a1;
    border-color: #1dd1a1;
}

.jipg__subscribe_checkbox:checked + .jipg__subscribe_checklabel::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #1a1f2e;
    font-size: 14px;
    font-weight: bold;
}

.jipg__subscribe_checklabel {
    cursor: pointer;
    color: #b8b8b8;
    line-height: 1.4;
    font-size: 0.9rem;
}

.jipg__subscribe_checklabel a {
    color: #48dbfb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jipg__subscribe_checklabel a:hover {
    color: #1dd1a1;
}

.jipg__subscribe_checkbox:focus + .jipg__subscribe_checklabel::before {
    border-color: #48dbfb;
    box-shadow: 0 0 0 2px rgba(72, 219, 251, 0.3);
}

.jipg__subscribe_submit {
    width: 100%;
    background: linear-gradient(45deg, #48dbfb, #1dd1a1);
    color: #1a1f2e;
    border: none;
    padding: 1.2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
    min-height: 44px;
}

.jipg__subscribe_submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(72, 219, 251, 0.3);
}

.jipg__subscribe_submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.jipg__subscribe_success {
    text-align: center;
    background: rgba(29, 209, 161, 0.1);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(29, 209, 161, 0.3);
}

.jipg__subscribe_successicon {
    font-size: 4rem;
    color: #1dd1a1;
    margin-bottom: 1.5rem;
}

.jipg__subscribe_success h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: #f7f7f7;
    margin-bottom: 1rem;
}

.jipg__subscribe_success p {
    color: #b8b8b8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.jipg__subscribe_actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.jipg__subscribe_homelink {
    background: #48dbfb;
    color: #1a1f2e;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.jipg__subscribe_homelink:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(72, 219, 251, 0.3);
}

.jipg__subscribe_unsubscribe {
    background: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
}

.jipg__subscribe_unsubscribe:hover {
    background: #ff6b6b;
    color: #1a1f2e;
    transform: translateY(-3px);
}

.jipg__subscribe_benefits {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.jipg__subscribe_benefits h2 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #f7f7f7;
}

.jipg__subscribe_benefitssub {
    text-align: center;
    color: #b8b8b8;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.jipg__subscribe_benefit {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.jipg__subscribe_benefit:hover {
    border-color: rgba(72, 219, 251, 0.3);
    transform: translateY(-10px);
}

.jipg__subscribe_benefit .material-icons {
    font-size: 3rem;
    color: #48dbfb;
    margin-bottom: 1.5rem;
}

.jipg__subscribe_benefit h3 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    color: #f7f7f7;
    min-height: 66px;
    margin-bottom: 1rem;
}

.jipg__subscribe_benefit p {
    color: #b8b8b8;
    line-height: 1.6;
}

.jipg__subscribe_features {
    padding: 6rem 2rem;
}

.jipg__subscribe_featurecontent {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.jipg__subscribe_featuretext {
    flex: 1;
}

.jipg__subscribe_featuretext h2 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: #f7f7f7;
    margin-bottom: 1.5rem;
}

.jipg__subscribe_featuretext p {
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.jipg__subscribe_featurelist {
    list-style: none;
    padding: 0;
}

.jipg__subscribe_featurelist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b8b8b8;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.jipg__subscribe_featurelist .material-icons {
    color: #1dd1a1;
    font-size: 1.2rem;
}

.jipg__subscribe_featurevisual {
    flex: 1;
    position: relative;
    height: 300px;
}

.jipg__subscribe_visualorb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #48dbfb, #1dd1a1);
    opacity: 0.6;
    animation: jipg__subscribe_pulse 4s ease-in-out infinite;
}

.jipg__subscribe_orb1 {
    width: 120px;
    height: 120px;
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.jipg__subscribe_orb2 {
    width: 80px;
    height: 80px;
    top: 150px;
    right: 30px;
    animation-delay: 1.3s;
}

.jipg__subscribe_orb3 {
    width: 100px;
    height: 100px;
    bottom: 40px;
    left: 100px;
    animation-delay: 2.6s;
}

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

.jipg__subscribe_community {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
}

.jipg__subscribe_community h2 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: #f7f7f7;
    margin-bottom: 1rem;
}

.jipg__subscribe_communitysub {
    color: #b8b8b8;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.jipg__subscribe_communitystats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.jipg__subscribe_stat {
    text-align: center;
}

.jipg__subscribe_statnumber {
    display: block;
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #48dbfb;
    margin-bottom: 0.5rem;
}

.jipg__subscribe_statlabel {
    color: #b8b8b8;
    font-size: 1.1rem;
}

.jipg__subscribe_unsubscribeModal {
    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: 10000;
}

.jipg__subscribe_modalcontent {
    background: #1a1f2e;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #1dd1a1;
    box-shadow: 0 20px 60px rgba(29, 209, 161, 0.3);
}

.jipg__subscribe_modalicon {
    font-size: 4rem;
    color: #1dd1a1;
    margin-bottom: 1.5rem;
}

.jipg__subscribe_modalcontent h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: #f7f7f7;
    margin-bottom: 1rem;
}

.jipg__subscribe_modalcontent p {
    color: #b8b8b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.jipg__subscribe_modalclose {
    background: #48dbfb;
    color: #1a1f2e;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
}

.jipg__subscribe_modalclose:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(72, 219, 251, 0.3);
}

@media (max-width: 768px) {
    .jipg__subscribe_hero {
        padding: 4rem 1.5rem;
    }
    
    .jipg__subscribe_content h1 {
        font-size: 2.5rem;
    }
    
    .jipg__subscribe_subtitle {
        font-size: 1.1rem;
    }
    
    .jipg__subscribe_formsection {
        padding: 2rem;
    }
    
    .jipg__subscribe_featurecontent {
        flex-direction: column;
        gap: 3rem;
    }
    
    .jipg__subscribe_benefits,
    .jipg__subscribe_features,
    .jipg__subscribe_community {
        padding: 4rem 1.5rem;
    }

    .jipg__subscribe_orb3,
    .jipg__subscribe_orb1 {
        left: 0;
    }
    
    .jipg__subscribe_actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .jipg__subscribe_hero {
        padding: 3rem 0.3rem;
    }
    
    .jipg__subscribe_content h1 {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    .jipg__subscribe_subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .jipg__subscribe_formsection {
        padding: 1.5rem 0.5rem;
        margin: 0 0.3rem;
    }
    
    .jipg__subscribe_input {
        padding: 1rem 1rem 1rem 2.5rem;
        font-size: 14px;
    }
    
    .jipg__subscribe_success {
        padding: 2rem 0.5rem;
        margin: 0 0.3rem;
    }
    
    .jipg__subscribe_benefits,
    .jipg__subscribe_features,
    .jipg__subscribe_community {
        padding: 3rem 0.3rem;
    }
    
    .jipg__subscribe_benefit {
        padding: 1.5rem 0.5rem;
        margin: 0 0.3rem;
    }
    
    .jipg__subscribe_benefit:hover {
        transform: none;
    }
    
    .jipg__subscribe_featuretext h2 {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    .jipg__subscribe_featuretext p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .jipg__subscribe_communitystats {
        gap: 2rem;
    }
    
    .jipg__subscribe_statnumber {
        font-size: 2.5rem;
    }
    
    .jipg__subscribe_modalcontent {
        margin: 1rem;
        padding: 2rem;
    }
}