:root {
    --gp-color-space: #0a0e17;
    --gp-color-nebula: #1a1f35;
    --gp-color-starlight: #2a3258;
    --gp-color-aurora: #3d4a7c;
    --gp-color-moonbeam: #6b7bb3;
    --gp-color-sunset: #ff6b8b;
    --gp-color-daylight: #ffd166;
    --gp-color-twilight: #a855f7;
    --gp-color-dawn: #06d6a0;
    --gp-color-text-primary: #f8f9fa;
    --gp-color-text-secondary: #e9ecef;
    --gp-color-text-muted: #adb5bd;
    --gp-color-border: #343a40;
    --gp-color-overlay: rgba(10, 14, 23, 0.85);
    --gp-font-heading: 'Manrope', sans-serif;
    --gp-font-body: 'Public Sans', sans-serif;
    --gp-radius-sm: 6px;
    --gp-radius-md: 12px;
    --gp-radius-lg: 20px;
    --gp-shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.15);
    --gp-shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.25);
    --gp-shadow-strong: 0 12px 36px rgba(0, 0, 0, 0.35);
    --gp-transition-fast: 0.2s ease;
    --gp-transition-medium: 0.3s ease;
    --gp-transition-slow: 0.5s ease;
}

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

body {
    font-family: var(--gp-font-body);
    font-weight: 400;
    color: var(--gp-color-text-primary);
    background-color: var(--gp-color-space);
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 285px;
}

.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/gp-core/gp-imgs/background-pattern.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.4;
}

h1, h2, h3, h4 {
    font-family: var(--gp-font-heading);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gp-color-text-primary) 0%, var(--gp-color-moonbeam) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gp-color-text-secondary);
}

a {
    color: var(--gp-color-moonbeam);
    text-decoration: none;
    transition: color var(--gp-transition-fast);
}

a:hover {
    color: var(--gp-color-daylight);
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: inherit;
}

input, textarea {
    font-family: var(--gp-font-body);
    font-size: 16px;
    background: transparent;
    border: none;
    color: var(--gp-color-text-primary);
    width: 100%;
    outline: none;
}

.gp__main_content {
    position: relative;
    background: var(--gp-color-overlay);
    backdrop-filter: blur(10px);
    margin: 0 auto;
    max-width: 1400px;
    border-radius: var(--gp-radius-lg);
    overflow: hidden;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.gp__main_content__wrapper {
    padding: 3rem;
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gp-color-space);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

.age-confirmation-dialog {
    background: var(--gp-color-nebula);
    border-radius: var(--gp-radius-lg);
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    border: 2px solid var(--gp-color-aurora);
    box-shadow: var(--gp-shadow-strong);
}

.age-confirmation-dialog span.material-icons-outlined {
    font-size: 4rem;
    color: var(--gp-color-dawn);
    margin-bottom: 1.5rem;
}

.age-confirmation-dialog h3 {
    color: var(--gp-color-text-primary);
    margin-bottom: 1rem;
}

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

.age-confirmation-dialog__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.age-confirmation-dialog__confirm,
.age-confirmation-dialog__deny {
    padding: 1rem 2rem;
    border-radius: var(--gp-radius-md);
    font-weight: 500;
    transition: all var(--gp-transition-medium);
    min-width: 180px;
}

.age-confirmation-dialog__confirm {
    background: linear-gradient(135deg, var(--gp-color-dawn) 0%, var(--gp-color-twilight) 100%);
    color: var(--gp-color-space);
}

.age-confirmation-dialog__deny {
    background: var(--gp-color-starlight);
    color: var(--gp-color-text-primary);
    border: 1px solid var(--gp-color-border);
}

.age-confirmation-dialog__confirm:hover {
    transform: translateY(-2px);
    box-shadow: var(--gp-shadow-medium);
}

.age-confirmation-dialog__deny:hover {
    background: var(--gp-color-aurora);
}

.age-confirmation-dialog__note {
    font-size: 0.875rem;
    color: var(--gp-color-text-muted);
    margin-top: 1rem;
}

.cookie-notification-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--gp-color-nebula);
    border-top: 2px solid var(--gp-color-aurora);
    padding: 1.5rem;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform var(--gp-transition-medium);
}

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

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

.cookie-consent-container span.material-icons-outlined {
    font-size: 2rem;
    color: var(--gp-color-daylight);
}

.cookie-consent-container__text {
    flex: 1;
    min-width: 270px;
}

.cookie-consent-container__text p {
    margin-bottom: 0.5rem;
    color: var(--gp-color-text-secondary);
}

.cookie-consent-container__text a {
    color: var(--gp-color-moonbeam);
    font-size: 0.875rem;
}

.cookie-consent-container__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cookie-consent-container__accept,
.cookie-consent-container__reject {
    padding: 0.75rem 1.5rem;
    border-radius: var(--gp-radius-md);
    font-weight: 500;
    transition: all var(--gp-transition-fast);
}

.cookie-consent-container__accept {
    background: linear-gradient(135deg, var(--gp-color-twilight) 0%, var(--gp-color-sunset) 100%);
    color: var(--gp-color-text-primary);
}

.cookie-consent-container__reject {
    background: var(--gp-color-starlight);
    color: var(--gp-color-text-primary);
    border: 1px solid var(--gp-color-border);
}

.cookie-consent-container__accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--gp-shadow-medium);
}

.cookie-consent-container__reject:hover {
    background: var(--gp-color-aurora);
}

.cookie-consent-container__close {
    background: none;
    color: var(--gp-color-text-muted);
    padding: 0.5rem;
    border-radius: var(--gp-radius-sm);
    transition: all var(--gp-transition-fast);
}

.cookie-consent-container__close:hover {
    color: var(--gp-color-text-primary);
    background: var(--gp-color-starlight);
}

.subscribe-reminder-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 23, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9997;
    padding: 1rem;
}

.subscription-reminder-modal {
    background: linear-gradient(135deg, var(--gp-color-nebula) 0%, var(--gp-color-starlight) 100%);
    border-radius: var(--gp-radius-lg);
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    border: 2px solid var(--gp-color-aurora);
    box-shadow: var(--gp-shadow-strong);
    position: relative;
}

.subscription-reminder-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    color: var(--gp-color-text-muted);
    padding: 0.5rem;
    border-radius: var(--gp-radius-sm);
    transition: all var(--gp-transition-fast);
}

.subscription-reminder-modal__close:hover {
    color: var(--gp-color-text-primary);
    background: var(--gp-color-starlight);
}

.subscription-reminder-modal span.material-icons-outlined {
    font-size: 3rem;
    color: var(--gp-color-daylight);
    margin-bottom: 1rem;
}

.subscription-reminder-modal h3 {
    color: var(--gp-color-text-primary);
    margin-bottom: 1rem;
}

.subscription-reminder-modal__dynamic-text {
    color: var(--gp-color-text-secondary);
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.subscription-reminder-modal__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gp-color-aurora) 0%, var(--gp-color-moonbeam) 100%);
    color: var(--gp-color-text-primary);
    padding: 1rem 2rem;
    border-radius: var(--gp-radius-md);
    font-weight: 500;
    transition: all var(--gp-transition-medium);
}

.subscription-reminder-modal__link:hover {
    transform: translateY(-2px);
    box-shadow: var(--gp-shadow-medium);
    color: var(--gp-color-text-primary);
}

.gp__header_navigation {
    background: var(--gp-color-overlay);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gp-color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

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

.gp__header_navigation__brand {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    color: var(--gp-color-text-primary);
    font-family: var(--gp-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.gp__header_navigation__brand img {
    width: 60px;
    height: 60px;
    border-radius: var(--gp-radius-md);
    border: 2px solid var(--gp-color-aurora);
}

.gp__header_navigation__toggle {
    display: none;
    background: none;
    color: var(--gp-color-text-primary);
    padding: 0.5rem;
    border-radius: var(--gp-radius-sm);
}

.gp__header_navigation__open,
.gp__header_navigation__close {
    font-size: 2rem;
}

.gp__header_navigation__close {
    display: none;
}

.gp__header_navigation__menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.gp__header_navigation__home,
.gp__header_navigation__link,
.gp__header_navigation__contact,
.gp__header_navigation__email {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: var(--gp-color-text-secondary);
    padding: 0.75rem 1rem;
    border-radius: var(--gp-radius-md);
    transition: all var(--gp-transition-fast);
    font-weight: 500;
}

.gp__header_navigation__home:hover,
.gp__header_navigation__link:hover,
.gp__header_navigation__contact:hover,
.gp__header_navigation__email:hover {
    color: var(--gp-color-text-primary);
    background: var(--gp-color-starlight);
    transform: translateY(-2px);
}

.gp__header_navigation__home {
    background: linear-gradient(135deg, var(--gp-color-twilight) 0%, var(--gp-color-sunset) 100%);
    color: var(--gp-color-text-primary);
}

.gp__platform_intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    padding: 2rem 0;
}

.gp__platform_intro__content {
    flex: 1;
    min-width: 270px;
}

.gp__platform_intro__features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gp__platform_intro__feature {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    background: var(--gp-color-nebula);
    padding: 0.75rem 1.25rem;
    border-radius: var(--gp-radius-lg);
    border: 1px solid var(--gp-color-border);
    transition: all var(--gp-transition-medium);
}

.gp__platform_intro__feature:hover {
    transform: translateY(-3px);
    border-color: var(--gp-color-aurora);
    box-shadow: var(--gp-shadow-soft);
}

.gp__platform_intro__feature span {
    color: var(--gp-color-daylight);
}

.gp__platform_intro__feature p {
    margin: 0;
    color: var(--gp-color-text-secondary);
}

.gp__platform_intro__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gp-color-dawn) 0%, var(--gp-color-twilight) 100%);
    color: var(--gp-color-space);
    padding: 1.25rem 2.5rem;
    border-radius: var(--gp-radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all var(--gp-transition-medium);
    margin-top: 1.5rem;
}

.gp__platform_intro__cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--gp-shadow-medium);
    color: var(--gp-color-space);
}

.gp__platform_intro__visual {
    flex: 1;
    min-width: 270px;
    position: relative;
}

.gp__platform_intro__visual img {
    width: 100%;
    max-width: 380px;
    height: 100%;
    max-height: 380px;
    border-radius: var(--gp-radius-lg);
    border: 3px solid var(--gp-color-aurora);
    box-shadow: var(--gp-shadow-medium);
    animation: float 6s ease-in-out infinite;
}

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

.gp__platform_highlights {
    margin-bottom: 6rem;
    text-align: center;
}

.gp__platform_highlights__subtitle {
    color: var(--gp-color-text-muted);
    margin-bottom: 3rem;
    font-size: 1.125rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.gp__platform_highlights__card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: linear-gradient(135deg, var(--gp-color-nebula) 0%, var(--gp-color-starlight) 100%);
    border-radius: var(--gp-radius-lg);
    padding: 2rem;
    border: 1px solid var(--gp-color-border);
    transition: all var(--gp-transition-medium);
    position: relative;
    overflow: hidden;
}

.gp__platform_highlights__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gp-color-dawn), var(--gp-color-twilight));
    transform: scaleX(0);
    transition: transform var(--gp-transition-medium);
}

.gp__platform_highlights__card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--gp-shadow-strong);
}

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

.gp__platform_highlights__card-icon {
    font-size: 3rem;
    color: var(--gp-color-daylight);
    margin-bottom: 1.5rem;
    display: inline-block;
    transform: scale(1);
    transition: transform var(--gp-transition-medium);
}

.gp__platform_highlights__card:hover .gp__platform_highlights__card-icon {
    transform: scale(1.2) rotate(10deg);
}

.gp__platform_highlights__card h3 {
    color: var(--gp-color-text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gp__platform_highlights__card p {
    color: var(--gp-color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

.gp__platform_story {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--gp-color-nebula) 0%, var(--gp-color-starlight) 100%);
    border-radius: var(--gp-radius-lg);
    border: 1px solid var(--gp-color-border);
}

.gp__platform_story__visual {
    flex: 1;
    min-width: 270px;
}

.gp__platform_story__visual img {
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 400px;
    border-radius: var(--gp-radius-lg);
    border: 3px solid var(--gp-color-aurora);
    box-shadow: var(--gp-shadow-medium);
    filter: sepia(0.3) brightness(0.9);
    transition: filter var(--gp-transition-medium);
}

.gp__platform_story__visual:hover img {
    filter: sepia(0) brightness(1);
}

.gp__platform_story__content {
    flex: 2;
    min-width: 270px;
}

.gp__platform_story__milestones {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gp__platform_story__milestone {
    flex: 1;
    min-width: 140px;
    background: var(--gp-color-space);
    padding: 1.5rem;
    border-radius: var(--gp-radius-md);
    text-align: center;
    border: 1px solid var(--gp-color-border);
    transition: all var(--gp-transition-fast);
}

.gp__platform_story__milestone:hover {
    transform: translateY(-5px);
    border-color: var(--gp-color-aurora);
    box-shadow: var(--gp-shadow-soft);
}

.gp__platform_story__milestone span {
    font-size: 2rem;
    color: var(--gp-color-dawn);
    margin-bottom: 0.75rem;
    display: block;
}

.gp__platform_story__milestone h4 {
    color: var(--gp-color-text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.gp__platform_story__milestone p {
    color: var(--gp-color-text-muted);
    font-size: 0.8125rem;
    margin: 0;
}

.gp__platform_story__link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gp-color-daylight);
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: var(--gp-radius-md);
    border: 2px solid var(--gp-color-aurora);
    transition: all var(--gp-transition-medium);
}

.gp__platform_story__link:hover {
    background: var(--gp-color-aurora);
    color: var(--gp-color-text-primary);
    transform: translateX(10px);
}

.gp__digital_collection {
    margin-bottom: 6rem;
}

.gp__digital_collection__description {
    color: var(--gp-color-text-muted);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.gp__digital_collection__item {
    flex: 1;
    min-width: 270px;
    max-width: 350px;
    height: 100%;
    min-height: 450px;
    background: linear-gradient(135deg, var(--gp-color-nebula) 0%, var(--gp-color-starlight) 100%);
    border-radius: var(--gp-radius-lg);
    overflow: hidden;
    border: 1px solid var(--gp-color-border);
    transition: all var(--gp-transition-medium);
    position: relative;
}

.gp__digital_collection__item:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: var(--gp-shadow-strong);
    border-color: var(--gp-color-aurora);
}

.gp__digital_collection__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--gp-color-sunset) 0%, var(--gp-color-daylight) 100%);
    color: var(--gp-color-space);
    padding: 0.5rem 1rem;
    border-radius: var(--gp-radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
    animation: pulse 2s infinite;
}

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

.gp__digital_collection__item img {
    width: 100%;
    max-width: 350px;
    height: 100%;
    max-height: 220px;
    object-fit: cover;
    transition: transform var(--gp-transition-medium);
}

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

.gp__digital_collection__item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--gp-color-text-primary);
    font-size: 1.25rem;
}

.gp__digital_collection__details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    color: var(--gp-color-text-muted);
    font-size: 0.875rem;
    min-height: 58px;
}

.gp__digital_collection__details span.material-icons-outlined {
    font-size: 1rem;
    color: var(--gp-color-daylight);
}

.gp__digital_collection__link {
    display: block;
    margin: 1.5rem;
    padding: 1rem;
    text-align: center;
    background: var(--gp-color-space);
    color: var(--gp-color-moonbeam);
    border-radius: var(--gp-radius-md);
    font-weight: 500;
    transition: all var(--gp-transition-fast);
    border: 1px solid var(--gp-color-border);
}

.gp__digital_collection__link:hover {
    background: linear-gradient(135deg, var(--gp-color-aurora) 0%, var(--gp-color-moonbeam) 100%);
    color: var(--gp-color-text-primary);
    transform: translateY(-2px);
    box-shadow: var(--gp-shadow-soft);
}

.gp__community_questions {
    margin-bottom: 6rem;
    background: linear-gradient(135deg, var(--gp-color-nebula) 0%, var(--gp-color-starlight) 100%);
    border-radius: var(--gp-radius-lg);
    padding: 3rem;
    border: 1px solid var(--gp-color-border);
}

.gp__community_questions__container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.gp__community_questions__category {
    flex: 1;
    min-width: 280px;
    background: var(--gp-color-space);
    border-radius: var(--gp-radius-lg);
    padding: 2rem;
    border: 1px solid var(--gp-color-border);
}

.gp__community_questions__category h3 {
    color: var(--gp-color-daylight);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gp-color-aurora);
}

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

.gp__community_questions__item {
    border-bottom: 1px solid var(--gp-color-border);
    padding-bottom: 1rem;
}

.gp__community_questions__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.gp__community_questions__question {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    color: var(--gp-color-text-primary);
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 0;
    transition: color var(--gp-transition-fast);
}

.gp__community_questions__question:hover {
    color: var(--gp-color-moonbeam);
}

.gp__community_questions__question span.material-icons-outlined {
    color: var(--gp-color-text-muted);
    transition: transform var(--gp-transition-medium);
}

.gp__community_questions__question.active span.material-icons-outlined {
    transform: rotate(180deg);
    color: var(--gp-color-daylight);
}

.gp__community_questions__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--gp-transition-medium);
}

.gp__community_questions__answer p {
    padding: 1rem 0 0;
    color: var(--gp-color-text-secondary);
    margin: 0;
    font-size: 0.9375rem;
}

.gp__community_questions__contact {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gp-color-border);
}

.gp__community_questions__contact p {
    color: var(--gp-color-text-muted);
    margin-bottom: 1.5rem;
}

.gp__community_questions__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gp-color-aurora) 0%, var(--gp-color-moonbeam) 100%);
    color: var(--gp-color-text-primary);
    padding: 1.25rem 2.5rem;
    border-radius: var(--gp-radius-lg);
    font-weight: 600;
    transition: all var(--gp-transition-medium);
}

.gp__community_questions__contact-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--gp-shadow-medium);
    color: var(--gp-color-text-primary);
}

.gp__member_voices {
    margin-bottom: 6rem;
}

.gp__member_voices__subtitle {
    color: var(--gp-color-text-muted);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.gp__member_voices__review {
    flex: 1;
    min-width: 270px;
    max-width: 350px;
    background: linear-gradient(135deg, var(--gp-color-nebula) 0%, var(--gp-color-starlight) 100%);
    border-radius: var(--gp-radius-lg);
    padding: 2rem;
    border: 1px solid var(--gp-color-border);
    transition: all var(--gp-transition-medium);
    position: relative;
    overflow: hidden;
}

.gp__member_voices__review:hover {
    transform: translateY(-10px) rotateZ(1deg);
    box-shadow: var(--gp-shadow-strong);
    border-color: var(--gp-color-aurora);
}

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

.gp__member_voices__review img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gp-color-aurora);
}

.gp__member_voices__info {
    flex: 1;
    min-width: 150px;
}

.gp__member_voices__info h4 {
    color: var(--gp-color-text-primary);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.gp__member_voices__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: var(--gp-color-text-muted);
    font-size: 0.8125rem;
}

.gp__member_voices__meta span.material-icons-outlined {
    font-size: 0.875rem;
}

.gp__member_voices__rating {
    display: flex;
    flex-wrap: wrap;
    gap: 0.125rem;
}

.gp__member_voices__rating span {
    color: var(--gp-color-daylight);
    font-size: 1.125rem;
}

.gp__member_voices__text {
    color: var(--gp-color-text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    min-height: 180px;
    position: relative;
    padding-left: 1rem;
}

.gp__member_voices__text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--gp-color-aurora);
    opacity: 0.3;
}

.gp__member_voices__engagement {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: var(--gp-color-text-muted);
    font-size: 0.875rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gp-color-border);
}

.gp__member_voices__engagement span.material-icons-outlined {
    font-size: 1rem;
    color: var(--gp-color-dawn);
}

.gp__platform_welcome {
    margin-bottom: 6rem;
    text-align: center;
}

.gp__platform_welcome__description {
    color: var(--gp-color-text-muted);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gp__platform_welcome__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.gp__platform_welcome__card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background: linear-gradient(135deg, var(--gp-color-nebula) 0%, var(--gp-color-starlight) 100%);
    border-radius: var(--gp-radius-lg);
    padding: 2rem;
    border: 1px solid var(--gp-color-border);
    transition: all var(--gp-transition-medium);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gp__platform_welcome__card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--gp-shadow-medium);
    border-color: var(--gp-color-aurora);
}

.gp__platform_welcome__card span.material-icons-outlined {
    font-size: 3rem;
    color: var(--gp-color-daylight);
    margin-bottom: 1.5rem;
    transition: transform var(--gp-transition-medium);
}

.gp__platform_welcome__card:hover span.material-icons-outlined {
    transform: rotate(15deg) scale(1.2);
}

.gp__platform_welcome__card p {
    color: var(--gp-color-text-secondary);
    margin-bottom: 1.5rem;
    flex: 1;
    min-height: 60px;
}

.gp__platform_welcome__card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gp-color-moonbeam);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--gp-radius-md);
    border: 1px solid var(--gp-color-border);
    transition: all var(--gp-transition-fast);
}

.gp__platform_welcome__card-link:hover {
    background: var(--gp-color-aurora);
    color: var(--gp-color-text-primary);
    transform: translateX(5px);
}

.gp__responsible_engagement {
    margin-bottom: 6rem;
    background: linear-gradient(135deg, var(--gp-color-nebula) 0%, var(--gp-color-starlight) 100%);
    border-radius: var(--gp-radius-lg);
    padding: 3rem;
    border: 1px solid var(--gp-color-border);
}

.gp__responsible_engagement__content {
    margin-bottom: 3rem;
}

.gp__responsible_engagement__content p {
    color: var(--gp-color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.gp__responsible_engagement__content a {
    color: var(--gp-color-daylight);
    text-decoration: underline;
}

.gp__responsible_engagement__link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gp-color-space);
    color: var(--gp-color-text-primary);
    padding: 1.25rem 2.5rem;
    border-radius: var(--gp-radius-md);
    font-weight: 500;
    border: 2px solid var(--gp-color-border);
    transition: all var(--gp-transition-medium);
    margin-top: 1rem;
}

.gp__responsible_engagement__link:hover {
    background: linear-gradient(135deg, var(--gp-color-aurora) 0%, var(--gp-color-moonbeam) 100%);
    transform: translateY(-3px);
    box-shadow: var(--gp-shadow-medium);
    color: var(--gp-color-text-primary);
}

.gp__responsible_engagement__partners {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--gp-color-border);
}

.gp__responsible_engagement__partner-group {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2rem;
}

.gp__responsible_engagement__partner {
    display: block;
    background: var(--gp-color-dawn);
    padding: 1.5rem;
    border-radius: var(--gp-radius-md);
    border: 1px solid var(--gp-color-border);
    transition: all var(--gp-transition-medium);
}

.gp__responsible_engagement__partner:hover {
    transform: translateY(-5px);
    border-color: var(--gp-color-aurora);
    box-shadow: var(--gp-shadow-medium);
}

.gp__responsible_engagement__partner img {
    width: 220px;
    height: 55px;
    min-height: 55px;
    max-height: 55px;
    object-fit: contain;
}

.gp__responsible_engagement__age-restriction {
    background: var(--gp-color-space);
    padding: 1.5rem;
    border-radius: 50%;
    border: 3px solid var(--gp-color-sunset);
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(255, 107, 139, 0.3); }
    to { box-shadow: 0 0 40px rgba(255, 107, 139, 0.6); }
}

.gp__responsible_engagement__age-restriction img {
    width: 100px;
    height: 100px;
}

.gp__contact_form {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: flex-start;
}

.gp__contact_form__intro {
    flex: 1;
    min-width: 270px;
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, var(--gp-color-nebula) 0%, var(--gp-color-starlight) 100%);
    border-radius: var(--gp-radius-lg);
    border: 1px solid var(--gp-color-border);
}

.gp__contact_form__animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(168, 85, 247, 0.1) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: shimmer 3s infinite;
    border-radius: var(--gp-radius-lg);
    z-index: 0;
}

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

.gp__contact_form__intro > * {
    position: relative;
    z-index: 1;
}

.gp__contact_form__intro h2 {
    color: var(--gp-color-text-primary);
    margin-bottom: 1rem;
}

.gp__contact_form__intro p {
    color: var(--gp-color-text-secondary);
}

.gp__contact_form__container {
    flex: 2;
    min-width: 270px;
    background: linear-gradient(135deg, var(--gp-color-nebula) 0%, var(--gp-color-starlight) 100%);
    border-radius: var(--gp-radius-lg);
    padding: 3rem;
    border: 1px solid var(--gp-color-border);
}

.gp__contact_form__container h3 {
    color: var(--gp-color-text-primary);
    margin-bottom: 0.5rem;
}

.gp__contact_form__container > p {
    color: var(--gp-color-text-muted);
    margin-bottom: 2rem;
}

.gp__contact_form__form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1.5rem;
}

.gp__contact_form__field {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;
}

.gp__contact_form__input-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    background: var(--gp-color-space);
    border: 2px solid var(--gp-color-border);
    border-radius: var(--gp-radius-md);
    padding: 1rem 1.25rem;
    transition: all var(--gp-transition-fast);
    position: relative;
}

.gp__contact_form__input-wrapper:focus-within {
    border-color: var(--gp-color-aurora);
    box-shadow: 0 0 0 3px rgba(61, 74, 124, 0.2);
}

.gp__contact_form__input-wrapper span.material-icons-outlined {
    color: var(--gp-color-text-muted);
    flex-shrink: 0;
}

.gp__contact_form__input-wrapper input,
.gp__contact_form__input-wrapper textarea {
    flex: 1;
    min-width: 200px;
    padding: 0.5rem 0;
    min-height: 44px;
}

.gp__contact_form__input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.gp__contact_form__hint {
    color: var(--gp-color-text-muted);
    font-size: 0.8125rem;
    min-height: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--gp-transition-fast);
    pointer-events: none;
}

.gp__contact_form__hint.visible {
    opacity: 1;
    transform: translateY(0);
}

.gp__contact_form__checkbox-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    padding-left: 3rem;
    min-height: 44px;
}

.gp__contact_form__checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 2;
}

.gp__contact_form__checkbox-custom {
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--gp-color-space);
    border: 2px solid var(--gp-color-border);
    border-radius: var(--gp-radius-sm);
    transition: all var(--gp-transition-fast);
    cursor: pointer;
    z-index: 1;
}

.gp__contact_form__checkbox-wrapper input[type="checkbox"]:checked ~ .gp__contact_form__checkbox-custom {
    background: var(--gp-color-dawn);
    border-color: var(--gp-color-dawn);
}

.gp__contact_form__checkbox-wrapper input[type="checkbox"]:checked ~ .gp__contact_form__checkbox-custom::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 6px;
    height: 12px;
    border: solid var(--gp-color-space);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.gp__contact_form__checkbox-wrapper label {
    flex: 1;
    color: var(--gp-color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
    cursor: pointer;
    pointer-events: none;
    padding-top: 0.25rem;
}

.gp__contact_form__checkbox-wrapper label a {
    color: var(--gp-color-moonbeam);
    text-decoration: underline;
    pointer-events: auto;
}

.gp__contact_form__submit {
    background: linear-gradient(135deg, var(--gp-color-dawn) 0%, var(--gp-color-twilight) 100%);
    color: var(--gp-color-space);
    padding: 1.25rem 2.5rem;
    border-radius: var(--gp-radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all var(--gp-transition-medium);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.gp__contact_form__submit:not(:disabled):hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--gp-shadow-medium);
}

.gp__contact_form__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.contact-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 23, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9996;
    padding: 1rem;
}

.feedback-modal-window {
    background: linear-gradient(135deg, var(--gp-color-nebula) 0%, var(--gp-color-starlight) 100%);
    border-radius: var(--gp-radius-lg);
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    border: 2px solid var(--gp-color-dawn);
    box-shadow: var(--gp-shadow-strong);
    position: relative;
}

.feedback-modal-window__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    color: var(--gp-color-text-muted);
    padding: 0.5rem;
    border-radius: var(--gp-radius-sm);
    transition: all var(--gp-transition-fast);
}

.feedback-modal-window__close:hover {
    color: var(--gp-color-text-primary);
    background: var(--gp-color-starlight);
}

.feedback-modal-window span.material-icons-outlined {
    font-size: 4rem;
    color: var(--gp-color-dawn);
    margin-bottom: 1.5rem;
}

.feedback-modal-window h3 {
    color: var(--gp-color-text-primary);
    margin-bottom: 1rem;
}

.feedback-modal-window__message {
    color: var(--gp-color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feedback-modal-window__confirm {
    background: linear-gradient(135deg, var(--gp-color-aurora) 0%, var(--gp-color-moonbeam) 100%);
    color: var(--gp-color-text-primary);
    padding: 1rem 2.5rem;
    border-radius: var(--gp-radius-md);
    font-weight: 500;
    transition: all var(--gp-transition-medium);
}

.feedback-modal-window__confirm:hover {
    transform: translateY(-2px);
    box-shadow: var(--gp-shadow-medium);
}

.gp__footer_information {
    background: var(--gp-color-overlay);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--gp-color-border);
    padding: 3rem 0 2rem;
    width: 100%;
}

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

.gp__footer_information__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gp-color-border);
}

.gp__footer_information__brand {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    color: var(--gp-color-text-primary);
    font-family: var(--gp-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.gp__footer_information__brand span {
    color: var(--gp-color-daylight);
}

.gp__footer_information__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gp__footer_information__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: var(--gp-color-text-secondary);
    padding: 0.75rem 1rem;
    border-radius: var(--gp-radius-md);
    transition: all var(--gp-transition-fast);
    font-size: 0.875rem;
}

.gp__footer_information__link:hover {
    color: var(--gp-color-text-primary);
    background: var(--gp-color-starlight);
}

.gp__footer_information__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.gp__footer_information__copyright {
    color: var(--gp-color-text-muted);
    font-size: 0.875rem;
    margin: 0;
}

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

.gp__footer_information__legal a {
    color: var(--gp-color-text-muted);
    font-size: 0.875rem;
    transition: color var(--gp-transition-fast);
}

.gp__footer_information__legal a:hover {
    color: var(--gp-color-text-primary);
}

@media (max-width: 1024px) {
    .gp__main_content__wrapper {
        padding: 2rem;
    }
    
    .gp__platform_intro,
    .gp__platform_story {
        gap: 3rem;
    }
    
    .gp__responsible_engagement__partners {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .gp__header_navigation__container {
        padding: 1rem;
        justify-content: center;
    }
    
    .gp__header_navigation__toggle {
        display: block;
    }
    
    .gp__header_navigation__menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        display: none;
        background: var(--gp-color-space);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform var(--gp-transition-medium);
        z-index: 999;
    }
    
    .gp__header_navigation__menu.active {
        display: flex;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1rem;
        transform: translateX(0);
        top: 100%;
        background: var(--gp-color-space);
        padding: 2rem 0.2rem;
    }
    
    .gp__header_navigation__close.active {
        display: inline-block;
    }
    
    .gp__header_navigation__open.active {
        display: none;
    }
    
    .gp__main_content__wrapper {
        padding: 1.5rem;
    }
    
    .gp__platform_intro,
    .gp__platform_story,
    .gp__community_questions,
    .gp__responsible_engagement {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem 0.2rem;
    }
    
    .gp__platform_intro__features {
        justify-content: center;
    }
    
    .gp__platform_story__visual {
        order: -1;
    }
    
    .gp__responsible_engagement__partners {
        flex-direction: column;
        gap: 2rem;
    }
    
    .gp__responsible_engagement__partner-group {
        order: 2;
        width: 100%;
        align-items: center;
    }
    
    .gp__responsible_engagement__age-restriction {
        order: 1;
    }
    
    .gp__contact_form {
        flex-direction: column;
        gap: 2rem;
    }
    
    .gp__footer_information__top,
    .gp__footer_information__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .gp__footer_information__links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gp__main_content__wrapper {
        padding: 0.5rem;
    }
    
    h1, h2, h3 {
        text-align: center;
    }
    
    .age-confirmation-dialog,
    .subscription-reminder-modal,
    .feedback-modal-window {
        padding: 2rem 1rem;
    }
    
    .gp__platform_highlights__card,
    .gp__digital_collection__item,
    .gp__member_voices__review,
    .gp__platform_welcome__card {
        min-width: 100%;
    }
    
    .gp__community_questions__category {
        min-width: 100%;
    }
    
    .gp__responsible_engagement__partner img {
        width: 200px;
        height: 50px;
        min-height: 50px;
        max-height: 50px;
    }
    
    .gp__contact_form__intro,
    .gp__contact_form__container {
        padding: 1.5rem 1rem;
    }
    
    .gp__footer_information {
        padding: 2rem 0 1rem;
    }
    
    .gp__footer_information__container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .gp__platform_intro__visual img,
    .gp__platform_story__visual img {
        animation: none;
    }
    
    .gp__platform_highlights__card:hover,
    .gp__digital_collection__item:hover,
    .gp__member_voices__review:hover,
    .gp__platform_welcome__card:hover {
        transform: none;
    }
    
    .gp__platform_intro__cta:hover,
    .gp__community_questions__contact-link:hover,
    .gp__responsible_engagement__link:hover,
    .gp__contact_form__submit:not(:disabled):hover {
        transform: none;
    }
    
    .gp__platform_highlights__card:hover .gp__platform_highlights__card-icon,
    .gp__platform_welcome__card:hover span.material-icons-outlined {
        transform: none;
    }
}

@media (max-width: 320px) {
    .gp__main_content__wrapper {
        padding: 0.25rem;
    }
    
    .gp__platform_intro__feature,
    .gp__platform_story__milestone {
        min-width: 100%;
    }
    
    .cookie-consent-container__text {
        min-width: 100%;
    }
    
    .gp__contact_form__input-wrapper {
        padding: 0.75rem;
    }
}

.gppg__privacy_policy {
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f35 100%);
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gppg__privacy_policy__container {
    max-width: 1200px;
    width: 100%;
    background: rgba(26, 31, 53, 0.9);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid #2a3258;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.gppg__privacy_policy__container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06d6a0, #a855f7, #ff6b8b);
    animation: privacyBorder 8s linear infinite;
}

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

.gppg__privacy_policy__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.gppg__privacy_policy__header .material-icons-outlined {
    font-size: 4rem;
    color: #06d6a0;
    margin-bottom: 1.5rem;
    animation: privacyIconFloat 3s ease-in-out infinite;
}

@keyframes privacyIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.gppg__privacy_policy__header h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 0%, #6b7bb3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.gppg__privacy_policy__subtitle {
    color: #adb5bd;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.gppg__privacy_policy__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: #6b7bb3;
    font-size: 0.95rem;
}

.gppg__privacy_policy__meta .material-icons-outlined {
    font-size: 1.2rem;
    animation: none;
    margin: 0;
}

.gppg__privacy_policy__section {
    margin-bottom: 3.5rem;
    background: rgba(10, 14, 23, 0.5);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #2a3258;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gppg__privacy_policy__section:hover {
    transform: translateY(-5px);
    border-color: #3d4a7c;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gppg__privacy_policy__section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #06d6a0, #a855f7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.gppg__privacy_policy__section-header .material-icons-outlined {
    font-size: 2.5rem;
    color: #ffd166;
    background: rgba(255, 209, 102, 0.1);
    padding: 0.8rem;
    border-radius: 12px;
}

.gppg__privacy_policy__section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 600;
}

.gppg__privacy_policy__section p {
    color: #e9ecef;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.gppg__privacy_policy__points {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.gppg__privacy_policy__point {
    flex: 1;
    min-width: 282px;
    background: rgba(42, 50, 88, 0.5);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #3d4a7c;
    transition: all 0.3s ease;
}

.gppg__privacy_policy__point:hover {
    transform: translateY(-3px);
    background: rgba(61, 74, 124, 0.3);
}

.gppg__privacy_policy__point .material-icons-outlined {
    font-size: 2.5rem;
    color: #ff6b8b;
    margin-bottom: 1rem;
}

.gppg__privacy_policy__point h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gppg__privacy_policy__point p {
    color: #adb5bd;
    font-size: 0.95rem;
    margin: 0;
}

.gppg__privacy_policy__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.gppg__privacy_policy__grid-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background: rgba(42, 50, 88, 0.3);
    border-radius: 12px;
    border: 1px solid #2a3258;
    transition: all 0.3s ease;
}

.gppg__privacy_policy__grid-item:hover {
    transform: scale(1.05);
    border-color: #06d6a0;
}

.gppg__privacy_policy__grid-item .material-icons-outlined {
    font-size: 3rem;
    color: #a855f7;
    margin-bottom: 1rem;
}

.gppg__privacy_policy__grid-item h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.gppg__privacy_policy__grid-item p {
    color: #adb5bd;
    font-size: 0.9rem;
    margin: 0;
}

.gppg__privacy_policy__purposes {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.gppg__privacy_policy__purpose {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    background: rgba(6, 214, 160, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(6, 214, 160, 0.3);
}

.gppg__privacy_policy__purpose .material-icons-outlined {
    color: #06d6a0;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.gppg__privacy_policy__purpose p {
    color: #e9ecef;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.gppg__privacy_policy__rights {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.gppg__privacy_policy__right {
    flex: 1;
    min-width: 282px;
    background: rgba(255, 107, 139, 0.1);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 139, 0.3);
}

.gppg__privacy_policy__right h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gppg__privacy_policy__right p {
    color: #e9ecef;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.gppg__privacy_policy__contact {
    background: rgba(168, 85, 247, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.gppg__privacy_policy__contact p {
    color: #e9ecef;
    margin-bottom: 1.5rem;
}

.gppg__privacy_policy__contact-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(10, 14, 23, 0.5);
    border-radius: 8px;
}

.gppg__privacy_policy__contact-info .material-icons-outlined {
    color: #ffd166;
    font-size: 1.5rem;
}

.gppg__privacy_policy__contact-info a {
    color: #6b7bb3;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.gppg__privacy_policy__contact-info a:hover {
    color: #ffd166;
}

.gppg__privacy_policy__contact-info p {
    color: #adb5bd;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .gppg__privacy_policy__container {
        padding: 2rem;
    }
    
    .gppg__privacy_policy__header h1 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .gppg__privacy_policy {
        padding: 1rem;
    }
    
    .gppg__privacy_policy__container {
        padding: 1.5rem;
    }
    
    .gppg__privacy_policy__header h1 {
        font-size: 2rem;
    }
    
    .gppg__privacy_policy__meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gppg__privacy_policy__section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gppg__privacy_policy,
    .gppg__privacy_policy__contact {
        padding: 0.5rem;
    }
    
    .gppg__privacy_policy__container {
        padding: 0.8rem;
        border-radius: 16px;
    }
    
    .gppg__privacy_policy__header h1 {
        font-size: 1.7rem;
        text-align: center;
    }
    
    .gppg__privacy_policy__subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .gppg__privacy_policy__section {
        padding: 1.2rem 0.8rem;
        margin-bottom: 2rem;
    }
    
    .gppg__privacy_policy__section-header h2 {
        font-size: 1.5rem;
    }
    
    .gppg__privacy_policy__point,
    .gppg__privacy_policy__grid-item,
    .gppg__privacy_policy__right {
        min-width: 100%;
    }
    
    .gppg__privacy_policy__contact-info a {
        font-size: 0.8rem;
        word-break: break-all;
    }
}

.gppg__terms_conditions {
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f35 100%);
    min-height: 100vh;
    padding: 2rem;
    margin: 0 auto;
}

.gppg__terms_conditions__container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background: rgba(26, 31, 53, 0.95);
    border-radius: 24px;
    padding: 3rem;
    border: 2px solid #3d4a7c;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    position: relative;
}

.gppg__terms_conditions__hero {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding: 3rem 0;
}

.gppg__terms_conditions__hero-content .material-icons-outlined {
    font-size: 5rem;
    color: #a855f7;
    margin-bottom: 2rem;
    display: inline-block;
    background: rgba(168, 85, 247, 0.1);
    padding: 1.5rem;
    border-radius: 50%;
    animation: termsIconPulse 3s ease-in-out infinite;
}

@keyframes termsIconPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4);
    }
    50% { 
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 0 30px 10px rgba(168, 85, 247, 0.2);
    }
}

.gppg__terms_conditions__hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #ff6b8b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gppg__terms_conditions__description {
    color: #adb5bd;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.gppg__terms_conditions__hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.gppg__terms_conditions__decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(255, 107, 139, 0.1));
    animation: termsCircleFloat 20s linear infinite;
}

.gppg__terms_conditions__decoration-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.gppg__terms_conditions__decoration-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 10%;
    animation-delay: 5s;
}

.gppg__terms_conditions__decoration-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 20%;
    animation-delay: 10s;
}

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

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

.gppg__terms_conditions__section {
    background: rgba(10, 14, 23, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #2a3258;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gppg__terms_conditions__section:hover {
    transform: translateX(10px);
    border-color: #a855f7;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.3);
}

.gppg__terms_conditions__section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a855f7, #ff6b8b);
    border-radius: 0 0 0 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gppg__terms_conditions__section:hover::after {
    opacity: 0.2;
}

.gppg__terms_conditions__section-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #3d4a7c;
}

.gppg__terms_conditions__section-heading .material-icons-outlined {
    font-size: 2.8rem;
    color: #ffd166;
    background: rgba(255, 209, 102, 0.1);
    padding: 0.8rem;
    border-radius: 12px;
}

.gppg__terms_conditions__section-heading h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.gppg__terms_conditions__text-block p {
    color: #e9ecef;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.gppg__terms_conditions__highlight {
    background: rgba(6, 214, 160, 0.1);
    border: 1px solid rgba(6, 214, 160, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
}

.gppg__terms_conditions__highlight .material-icons-outlined {
    color: #06d6a0;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.gppg__terms_conditions__highlight p {
    color: #e9ecef;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.gppg__terms_conditions__requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.gppg__terms_conditions__requirement {
    flex: 1;
    min-width: 250px;
    background: rgba(61, 74, 124, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #3d4a7c;
    transition: all 0.3s ease;
}

.gppg__terms_conditions__requirement:hover {
    transform: translateY(-5px);
    background: rgba(107, 123, 179, 0.2);
}

.gppg__terms_conditions__requirement .material-icons-outlined {
    font-size: 3rem;
    color: #ff6b8b;
    margin-bottom: 1.2rem;
}

.gppg__terms_conditions__requirement h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gppg__terms_conditions__requirement p {
    color: #adb5bd;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.gppg__terms_conditions__guidelines {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.gppg__terms_conditions__guideline {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(42, 50, 88, 0.5);
    border-radius: 12px;
    padding: 1.8rem;
    border-left: 4px solid #ffd166;
}

.gppg__terms_conditions__guideline-icon {
    flex-shrink: 0;
}

.gppg__terms_conditions__guideline-icon .material-icons-outlined {
    font-size: 2.5rem;
    color: #ffd166;
    background: rgba(255, 209, 102, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
}

.gppg__terms_conditions__guideline-content {
    flex: 1;
    min-width: 282px;
}

.gppg__terms_conditions__guideline-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.gppg__terms_conditions__guideline-content p {
    color: #adb5bd;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

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

.gppg__terms_conditions__disclaimer p {
    color: #e9ecef;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.gppg__terms_conditions__disclaimer-point {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 8px;
}

.gppg__terms_conditions__disclaimer-point .material-icons-outlined {
    color: #ff6b8b;
    font-size: 1.5rem;
}

.gppg__terms_conditions__disclaimer-point p {
    color: #e9ecef;
    margin: 0;
    font-size: 0.95rem;
}

.gppg__terms_conditions__monitoring p {
    color: #e9ecef;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.gppg__terms_conditions__monitoring-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 12px;
    padding: 1.8rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.gppg__terms_conditions__monitoring-item .material-icons-outlined {
    font-size: 2.5rem;
    color: #a855f7;
    margin-bottom: 1rem;
}

.gppg__terms_conditions__monitoring-item h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.gppg__terms_conditions__monitoring-item p {
    color: #adb5bd;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.gppg__terms_conditions__updates p {
    color: #e9ecef;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.gppg__terms_conditions__update-feature {
    flex: 1;
    min-width: 200px;
    background: rgba(6, 214, 160, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(6, 214, 160, 0.3);
}

.gppg__terms_conditions__update-feature .material-icons-outlined {
    font-size: 2rem;
    color: #06d6a0;
    margin-bottom: 1rem;
}

.gppg__terms_conditions__update-feature h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.gppg__terms_conditions__update-feature p {
    color: #adb5bd;
    font-size: 0.9rem;
    margin: 0;
}

.gppg__terms_conditions__liability p {
    color: #e9ecef;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.gppg__terms_conditions__liability-point {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 209, 102, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.gppg__terms_conditions__liability-point .material-icons-outlined {
    font-size: 2rem;
    color: #ffd166;
    margin-bottom: 1rem;
}

.gppg__terms_conditions__liability-point h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.gppg__terms_conditions__liability-point p {
    color: #adb5bd;
    font-size: 0.9rem;
    margin: 0;
}

.gppg__terms_conditions__support {
    background: rgba(107, 123, 179, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(107, 123, 179, 0.3);
}

.gppg__terms_conditions__support p {
    color: #e9ecef;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.gppg__terms_conditions__support-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    background: rgba(10, 14, 23, 0.6);
    border-radius: 12px;
    padding: 1.8rem;
    margin: 2rem 0;
}

.gppg__terms_conditions__support-contact .material-icons-outlined {
    font-size: 2.5rem;
    color: #ffd166;
}

.gppg__terms_conditions__support-details {
    flex: 1;
    min-width: 282px;
}

.gppg__terms_conditions__support-details a {
    color: #6b7bb3;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.gppg__terms_conditions__support-details a:hover {
    color: #ffd166;
}

.gppg__terms_conditions__support-details p {
    color: #adb5bd;
    font-size: 0.95rem;
    margin: 0;
}

.gppg__terms_conditions__support-note {
    color: #6b7bb3 !important;
    font-size: 0.95rem !important;
    font-style: italic;
    border-top: 1px solid #3d4a7c;
    padding-top: 1.5rem;
    margin-top: 1.5rem !important;
}

@media (max-width: 1024px) {
    .gppg__terms_conditions__container {
        padding: 2rem;
    }
    
    .gppg__terms_conditions__hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .gppg__terms_conditions__guideline-content,
    .gppg__terms_conditions__support-details,
    .gppg__terms_conditions__requirement,
    .gppg__terms_conditions__monitoring-item,
    .gppg__terms_conditions__update-feature,
    .gppg__terms_conditions__liability-point {
        min-width: 0;
        width: 100%;
    }

    .gppg__terms_conditions {
        padding: 1rem;
    }
    
    .gppg__terms_conditions__container {
        padding: 1.5rem;
    }
    
    .gppg__terms_conditions__hero h1 {
        font-size: 2rem;
    }
    
    .gppg__terms_conditions__description {
        font-size: 1.1rem;
    }
    
    .gppg__terms_conditions__section {
        padding: 1.8rem;
    }
    
    .gppg__terms_conditions__section-heading h2 {
        font-size: 1.7rem;
    }

    .gppg__terms_conditions__guideline,
    .gppg__terms_conditions__support-contact {
        flex-direction: column;
    }

    .gppg__terms_conditions__monitoring-grid,
    .gppg__terms_conditions__update-features,
    .gppg__terms_conditions__requirements {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .gppg__terms_conditions,
    .gppg__terms_conditions__support {
        padding: 0.5rem;
    }
    
    .gppg__terms_conditions__container {
        padding: 0.8rem;
        border-radius: 16px;
    }
    
    .gppg__terms_conditions__hero {
        padding: 1.5rem 0.3rem;
    }
    
    .gppg__terms_conditions__hero h1 {
        font-size: 1.7rem;
        text-align: center;
    }
    
    .gppg__terms_conditions__description {
        font-size: 1rem;
        text-align: center;
    }
    
    .gppg__terms_conditions__section {
        padding: 1.2rem 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .gppg__terms_conditions__section-heading h2 {
        font-size: 1.5rem;
    }

    .gppg__terms_conditions__disclaimer {
        padding: 2.5rem 0.2rem;
    }
    
    .gppg__terms_conditions__requirement,
    .gppg__terms_conditions__monitoring-item,
    .gppg__terms_conditions__update-feature,
    .gppg__terms_conditions__liability-point {
        min-width: 90%;
    }
    
    .gppg__terms_conditions__support-details a {
        font-size: 0.85rem;
        word-break: break-all;
    }
}

.gppg__cookie_policy {
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f35 100%);
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gppg__cookie_policy__wrapper {
    max-width: 1200px;
    width: 100%;
    background: rgba(26, 31, 53, 0.92);
    border-radius: 28px;
    padding: 3rem;
    border: 2px solid #ffd166;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.gppg__cookie_policy__wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 209, 102, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(6, 214, 160, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.gppg__cookie_policy__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding: 2rem 0;
}

.gppg__cookie_policy__header-content .material-icons-outlined {
    font-size: 4.5rem;
    color: #ffd166;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: cookieSpin 20s linear infinite;
}

@keyframes cookieSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.gppg__cookie_policy__header h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.7rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd166 0%, #ff6b8b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gppg__cookie_policy__subtitle {
    color: #adb5bd;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.gppg__cookie_policy__header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.gppg__cookie_policy__cookie-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, #ffd166 0%, #ffb347 100%);
    border-radius: 50%;
    opacity: 0.3;
    animation: cookieFloat 15s linear infinite;
}

.gppg__cookie_policy__cookie-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.gppg__cookie_policy__cookie-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    width: 30px;
    height: 30px;
}

.gppg__cookie_policy__cookie-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
    width: 25px;
    height: 25px;
}

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

.gppg__cookie_policy__content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 3.5rem;
}

.gppg__cookie_policy__intro {
    background: linear-gradient(135deg, rgba(255, 209, 102, 0.1) 0%, rgba(255, 107, 139, 0.1) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 209, 102, 0.3);
}

.gppg__cookie_policy__intro-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gppg__cookie_policy__intro-content .material-icons-outlined {
    font-size: 3rem;
    color: #ffd166;
    margin-bottom: 1.5rem;
    background: rgba(255, 209, 102, 0.15);
    padding: 1rem;
    border-radius: 50%;
}

.gppg__cookie_policy__intro h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.gppg__cookie_policy__intro p {
    color: #e9ecef;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.gppg__cookie_policy__intro-note {
    background: rgba(10, 14, 23, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    border-left: 4px solid #ff6b8b;
}

.gppg__cookie_policy__intro-note p {
    color: #ffd166;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.gppg__cookie_policy__categories h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

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

.gppg__cookie_policy__category {
    flex: 1;
    min-width: 282px;
    background: rgba(10, 14, 23, 0.7);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #2a3258;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gppg__cookie_policy__category:hover {
    transform: translateY(-10px);
    border-color: #06d6a0;
    box-shadow: 0 15px 40px rgba(6, 214, 160, 0.2);
}

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

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

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

.gppg__cookie_policy__category-header .material-icons-outlined {
    font-size: 2.5rem;
    color: #ff6b8b;
    background: rgba(255, 107, 139, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
}

.gppg__cookie_policy__category-header h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.gppg__cookie_policy__category p {
    color: #adb5bd;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.gppg__cookie_policy__category-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(42, 50, 88, 0.5);
}

.gppg__cookie_policy__category-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.gppg__cookie_policy__category-list .material-icons-outlined {
    color: #06d6a0;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.gppg__cookie_policy__category-list span {
    color: #e9ecef;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

.gppg__cookie_policy__management {
    background: rgba(6, 214, 160, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(6, 214, 160, 0.3);
}

.gppg__cookie_policy__management-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gppg__cookie_policy__management-header .material-icons-outlined {
    font-size: 3rem;
    color: #06d6a0;
    background: rgba(6, 214, 160, 0.15);
    padding: 0.8rem;
    border-radius: 12px;
}

.gppg__cookie_policy__management-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.gppg__cookie_policy__management-content p {
    color: #e9ecef;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.gppg__cookie_policy__browser-guides {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.gppg__cookie_policy__browser-guide {
    flex: 1;
    min-width: 250px;
    background: rgba(10, 14, 23, 0.6);
    border-radius: 12px;
    padding: 1.8rem;
    border: 1px solid #2a3258;
    transition: all 0.3s ease;
}

.gppg__cookie_policy__browser-guide:hover {
    transform: scale(1.05);
    border-color: #06d6a0;
}

.gppg__cookie_policy__browser-guide .material-icons-outlined {
    font-size: 2.5rem;
    color: #a855f7;
    margin-bottom: 1rem;
}

.gppg__cookie_policy__browser-guide h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gppg__cookie_policy__browser-guide p {
    color: #adb5bd;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.gppg__cookie_policy__storage h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

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

.gppg__cookie_policy__storage-item {
    flex: 1;
    min-width: 282px;
    text-align: center;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
}

.gppg__cookie_policy__storage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.gppg__cookie_policy__storage-item .material-icons-outlined {
    font-size: 3rem;
    color: #a855f7;
    margin-bottom: 1.5rem;
}

.gppg__cookie_policy__storage-item h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gppg__cookie_policy__storage-item p {
    color: #adb5bd;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.gppg__cookie_policy__third-party {
    background: rgba(107, 123, 179, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(107, 123, 179, 0.3);
}

.gppg__cookie_policy__third-party-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gppg__cookie_policy__third-party-header .material-icons-outlined {
    font-size: 3rem;
    color: #6b7bb3;
    background: rgba(107, 123, 179, 0.15);
    padding: 0.8rem;
    border-radius: 12px;
}

.gppg__cookie_policy__third-party-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.gppg__cookie_policy__third-party-content p {
    color: #e9ecef;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.gppg__cookie_policy__third-party-services {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.gppg__cookie_policy__third-party-service {
    flex: 1;
    min-width: 250px;
    background: rgba(10, 14, 23, 0.6);
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    border: 1px solid #2a3258;
}

.gppg__cookie_policy__third-party-service .material-icons-outlined {
    font-size: 2.5rem;
    color: #ffd166;
    margin-bottom: 1rem;
}

.gppg__cookie_policy__third-party-service h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gppg__cookie_policy__third-party-service p {
    color: #adb5bd;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.gppg__cookie_policy__third-party-note {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 107, 139, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 107, 139, 0.3);
    margin-top: 2rem;
}

.gppg__cookie_policy__third-party-note .material-icons-outlined {
    color: #ff6b8b;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.gppg__cookie_policy__third-party-note p {
    color: #ffd166;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.gppg__cookie_policy__contact {
    background: linear-gradient(135deg, rgba(10, 14, 23, 0.8) 0%, rgba(42, 50, 88, 0.8) 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid #3d4a7c;
}

.gppg__cookie_policy__contact h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.gppg__cookie_policy__contact p {
    color: #e9ecef;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.gppg__cookie_policy__contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.gppg__cookie_policy__contact-method {
    flex: 1;
    min-width: 282px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 209, 102, 0.1);
    border-radius: 12px;
    padding: 1.8rem;
    border: 1px solid rgba(255, 209, 102, 0.3);
}

.gppg__cookie_policy__contact-method .material-icons-outlined {
    font-size: 2.5rem;
    color: #ffd166;
    flex-shrink: 0;
}

.gppg__cookie_policy__contact-method div {
    flex: 1;
}

.gppg__cookie_policy__contact-method a {
    color: #6b7bb3;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.gppg__cookie_policy__contact-method a:hover {
    color: #ffd166;
}

.gppg__cookie_policy__contact-method p {
    color: #adb5bd;
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
}

.gppg__cookie_policy__policy-update {
    color: #6b7bb3 !important;
    font-size: 0.95rem !important;
    font-style: italic;
    border-top: 1px solid #3d4a7c;
    padding-top: 1.5rem;
    margin-top: 1.5rem !important;
}

@media (max-width: 1024px) {
    .gppg__cookie_policy__wrapper {
        padding: 2rem;
    }
    
    .gppg__cookie_policy__header h1 {
        font-size: 2.3rem;
    }
    
    .gppg__cookie_policy__intro h2,
    .gppg__cookie_policy__categories h2,
    .gppg__cookie_policy__management-header h2,
    .gppg__cookie_policy__storage h2,
    .gppg__cookie_policy__third-party-header h2,
    .gppg__cookie_policy__contact h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .gppg__cookie_policy {
        padding: 1rem;
    }
    
    .gppg__cookie_policy__wrapper {
        padding: 1.5rem;
    }
    
    .gppg__cookie_policy__header h1 {
        font-size: 2rem;
    }
    
    .gppg__cookie_policy__subtitle {
        font-size: 1.1rem;
    }
    
    .gppg__cookie_policy__intro,
    .gppg__cookie_policy__management,
    .gppg__cookie_policy__third-party,
    .gppg__cookie_policy__contact {
        padding: 1.8rem;
    }
}

@media (max-width: 480px) {
    .gppg__cookie_policy {
        padding: 0.5rem;
    }
    
    .gppg__cookie_policy__wrapper {
        padding: 0.8rem;
        border-radius: 16px;
    }
    
    .gppg__cookie_policy__header {
        padding: 1rem 0.3rem;
    }
    
    .gppg__cookie_policy__header h1 {
        font-size: 1.7rem;
        text-align: center;
    }
    
    .gppg__cookie_policy__subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .gppg__cookie_policy__intro,
    .gppg__cookie_policy__management,
    .gppg__cookie_policy__third-party,
    .gppg__cookie_policy__contact {
        padding: 1.2rem 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .gppg__cookie_policy__intro h2,
    .gppg__cookie_policy__categories h2,
    .gppg__cookie_policy__management-header h2,
    .gppg__cookie_policy__storage h2,
    .gppg__cookie_policy__third-party-header h2,
    .gppg__cookie_policy__contact h2 {
        font-size: 1.6rem;
    }
    
    .gppg__cookie_policy__category,
    .gppg__cookie_policy__browser-guide,
    .gppg__cookie_policy__storage-item,
    .gppg__cookie_policy__third-party-service,
    .gppg__cookie_policy__contact-method {
        min-width: 100%;
    }
    
    .gppg__cookie_policy__contact-method a {
        font-size: 0.85rem;
        word-break: break-all;
    }

    .gppg__cookie_policy__category-list li,
    .gppg__cookie_policy__contact-method {
        flex-direction: column;
    }
    
    .gppg__cookie_policy__category:hover,
    .gppg__cookie_policy__browser-guide:hover,
    .gppg__cookie_policy__storage-item:hover {
        transform: none;
    }
}

.gppg__responsible_gaming {
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f35 100%);
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gppg__responsible_gaming__container {
    max-width: 1200px;
    width: 100%;
    background: rgba(26, 31, 53, 0.95);
    border-radius: 30px;
    padding: 3rem;
    border: 2px solid #06d6a0;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.gppg__responsible_gaming__container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(6, 214, 160, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 209, 102, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.gppg__responsible_gaming__hero {
    position: relative;
    margin-bottom: 4rem;
    padding: 4rem 0;
    text-align: center;
    z-index: 1;
}

.gppg__responsible_gaming__hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.gppg__responsible_gaming__hero-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #06d6a0;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s linear infinite;
}

.gppg__responsible_gaming__hero-particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    background: #ff6b8b;
}

.gppg__responsible_gaming__hero-particle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 5s;
    background: #ffd166;
}

.gppg__responsible_gaming__hero-particle:nth-child(3) {
    bottom: 30%;
    left: 25%;
    animation-delay: 10s;
    background: #a855f7;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

.gppg__responsible_gaming__hero-content {
    position: relative;
    z-index: 2;
}

.gppg__responsible_gaming__hero-content .material-icons-outlined {
    font-size: 5rem;
    color: #06d6a0;
    margin-bottom: 2rem;
    display: inline-block;
    animation: responsiblePulse 3s ease-in-out infinite;
}

@keyframes responsiblePulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 10px rgba(6, 214, 160, 0.3));
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        filter: drop-shadow(0 0 20px rgba(6, 214, 160, 0.6));
    }
}

.gppg__responsible_gaming__hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #06d6a0 0%, #a855f7 50%, #ffd166 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gppg__responsible_gaming__hero-subtitle {
    color: #adb5bd;
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.gppg__responsible_gaming__hero-badge {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    background: rgba(6, 214, 160, 0.15);
    color: #06d6a0;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(6, 214, 160, 0.3);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(6, 214, 160, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(6, 214, 160, 0.6);
    }
}

.gppg__responsible_gaming__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 4rem;
}

.gppg__responsible_gaming__section {
    background: rgba(10, 14, 23, 0.7);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #2a3258;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gppg__responsible_gaming__section:hover {
    border-color: #06d6a0;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(6, 214, 160, 0.15);
}

.gppg__responsible_gaming__section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(6, 214, 160, 0.03) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: sectionShimmer 8s linear infinite;
    pointer-events: none;
}

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

.gppg__responsible_gaming__section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.gppg__responsible_gaming__section-intro .material-icons-outlined {
    font-size: 3.5rem;
    color: #ffd166;
    margin-bottom: 1.5rem;
    background: rgba(255, 209, 102, 0.1);
    padding: 1rem;
    border-radius: 50%;
}

.gppg__responsible_gaming__section-intro h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.gppg__responsible_gaming__section-intro p {
    color: #e9ecef;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.gppg__responsible_gaming__principles {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.gppg__responsible_gaming__principle {
    flex: 1;
    min-width: 282px;
    background: rgba(42, 50, 88, 0.5);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
    border: 1px solid #3d4a7c;
    transition: all 0.3s ease;
}

.gppg__responsible_gaming__principle:hover {
    background: rgba(61, 74, 124, 0.3);
    transform: translateX(10px);
}

.gppg__responsible_gaming__principle-icon {
    flex-shrink: 0;
}

.gppg__responsible_gaming__principle-icon .material-icons-outlined {
    font-size: 2.8rem;
    color: #ff6b8b;
    background: rgba(255, 107, 139, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.gppg__responsible_gaming__principle-content {
    flex: 1;
    min-width: 250px;
}

.gppg__responsible_gaming__principle-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gppg__responsible_gaming__principle-content p {
    color: #adb5bd;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

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

.gppg__responsible_gaming__section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gppg__responsible_gaming__section-header p {
    color: #6b7bb3;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.gppg__responsible_gaming__pattern {
    flex: 1;
    min-width: 350px;
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.gppg__responsible_gaming__pattern.positive {
    background: rgba(6, 214, 160, 0.1);
    border: 2px solid rgba(6, 214, 160, 0.3);
}

.gppg__responsible_gaming__pattern.caution {
    background: rgba(255, 209, 102, 0.1);
    border: 2px solid rgba(255, 209, 102, 0.3);
}

.gppg__responsible_gaming__pattern-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gppg__responsible_gaming__pattern-header .material-icons-outlined {
    font-size: 2.5rem;
}

.gppg__responsible_gaming__pattern.positive .material-icons-outlined {
    color: #06d6a0;
}

.gppg__responsible_gaming__pattern.caution .material-icons-outlined {
    color: #ffd166;
}

.gppg__responsible_gaming__pattern-header h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

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

.gppg__responsible_gaming__pattern-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gppg__responsible_gaming__pattern-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.gppg__responsible_gaming__pattern-list .material-icons-outlined {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.gppg__responsible_gaming__pattern.positive .material-icons-outlined {
    color: #06d6a0;
}

.gppg__responsible_gaming__pattern.caution .material-icons-outlined {
    color: #ffd166;
}

.gppg__responsible_gaming__pattern-list span {
    color: #e9ecef;
    font-size: 1rem;
    line-height: 1.5;
    flex: 1;
}

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

.gppg__responsible_gaming__feature {
    flex: 1;
    min-width: 282px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
}

.gppg__responsible_gaming__feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.gppg__responsible_gaming__feature-visual {
    text-align: center;
    margin-bottom: 1.5rem;
}

.gppg__responsible_gaming__feature-visual .material-icons-outlined {
    font-size: 4rem;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.15);
    padding: 1rem;
    border-radius: 50%;
}

.gppg__responsible_gaming__feature-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.gppg__responsible_gaming__feature-content p {
    color: #adb5bd;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.gppg__responsible_gaming__feature-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: rgba(10, 14, 23, 0.5);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.gppg__responsible_gaming__feature-detail .material-icons-outlined {
    color: #ff6b8b;
    font-size: 1.2rem;
}

.gppg__responsible_gaming__feature-detail span {
    color: #e9ecef;
    font-size: 0.95rem;
}

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

.gppg__responsible_gaming__resource {
    flex: 1;
    min-width: 350px;
    background: rgba(107, 123, 179, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(107, 123, 179, 0.3);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
}

.gppg__responsible_gaming__resource-logo {
    flex-shrink: 0;
}

.gppg__responsible_gaming__resource-logo .material-icons-outlined {
    font-size: 3rem;
    color: #6b7bb3;
    background: rgba(107, 123, 179, 0.15);
    padding: 1rem;
    border-radius: 12px;
}

.gppg__responsible_gaming__resource-content {
    flex: 1;
    min-width: 250px;
}

.gppg__responsible_gaming__resource-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gppg__responsible_gaming__resource-content p {
    color: #adb5bd;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gppg__responsible_gaming__resource-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gppg__responsible_gaming__resource-link {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: #6b7bb3;
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    background: rgba(10, 14, 23, 0.6);
    border-radius: 8px;
    border: 1px solid #2a3258;
    transition: all 0.3s ease;
}

.gppg__responsible_gaming__resource-link:hover {
    background: #2a3258;
    color: #ffd166;
    transform: translateY(-2px);
}

.gppg__responsible_gaming__resource-link .material-icons-outlined {
    font-size: 1rem;
}

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

.gppg__responsible_gaming__guidance-point {
    flex: 1;
    min-width: 282px;
    text-align: center;
    background: rgba(255, 107, 139, 0.1);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 139, 0.3);
}

.gppg__responsible_gaming__guidance-point .material-icons-outlined {
    font-size: 3rem;
    color: #ff6b8b;
    margin-bottom: 1.5rem;
}

.gppg__responsible_gaming__guidance-point h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gppg__responsible_gaming__guidance-point p {
    color: #adb5bd;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

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

.gppg__responsible_gaming__control {
    flex: 1;
    min-width: 282px;
    background: rgba(255, 209, 102, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 209, 102, 0.3);
}

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

.gppg__responsible_gaming__control-header .material-icons-outlined {
    font-size: 2.5rem;
    color: #ffd166;
}

.gppg__responsible_gaming__control-header h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.gppg__responsible_gaming__control p {
    color: #adb5bd;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.gppg__responsible_gaming__control-list li {
    color: #e9ecef;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.gppg__responsible_gaming__control-list li::before {
    content: '•';
    color: #ffd166;
    position: absolute;
    left: 0;
}

.gppg__responsible_gaming__improvement p {
    color: #e9ecef;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.gppg__responsible_gaming__improvement-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    background: rgba(6, 214, 160, 0.1);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(6, 214, 160, 0.3);
}

.gppg__responsible_gaming__improvement-step .material-icons-outlined {
    font-size: 2.5rem;
    color: #06d6a0;
    margin-bottom: 1rem;
}

.gppg__responsible_gaming__improvement-step h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gppg__responsible_gaming__improvement-step p {
    color: #adb5bd;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.gppg__responsible_gaming__contact {
    background: linear-gradient(135deg, rgba(10, 14, 23, 0.9) 0%, rgba(42, 50, 88, 0.9) 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid #3d4a7c;
    text-align: center;
}

.gppg__responsible_gaming__contact-content .material-icons-outlined {
    font-size: 4rem;
    color: #06d6a0;
    margin-bottom: 1.5rem;
}

.gppg__responsible_gaming__contact h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.gppg__responsible_gaming__contact > p {
    color: #e9ecef;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gppg__responsible_gaming__contact-details {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gppg__responsible_gaming__contact-email {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    color: #6b7bb3;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    padding: 1.2rem 2.5rem;
    background: rgba(10, 14, 23, 0.6);
    border-radius: 12px;
    border: 1px solid #2a3258;
    transition: all 0.3s ease;
}

.gppg__responsible_gaming__contact-email:hover {
    background: #2a3258;
    color: #ffd166;
    transform: translateY(-2px);
}

.gppg__responsible_gaming__contact-email .material-icons-outlined {
    font-size: 1.5rem;
    margin: 0;
}

.gppg__responsible_gaming__contact-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: #adb5bd;
    font-size: 0.95rem;
}

.gppg__responsible_gaming__contact-note .material-icons-outlined {
    font-size: 1.2rem;
    margin: 0;
}

.gppg__responsible_gaming__disclaimer {
    color: #6b7bb3 !important;
    font-size: 0.95rem !important;
    font-style: italic;
    border-top: 1px solid #3d4a7c;
    padding-top: 1.5rem;
    margin-top: 1.5rem !important;
    max-width: 800px;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 1024px) {
    .gppg__responsible_gaming__container {
        padding: 2rem;
    }
    
    .gppg__responsible_gaming__hero h1 {
        font-size: 2.5rem;
    }
    
    .gppg__responsible_gaming__section-intro h2,
    .gppg__responsible_gaming__section-header h2,
    .gppg__responsible_gaming__contact h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .gppg__responsible_gaming {
        padding: 1rem;
    }
    
    .gppg__responsible_gaming__container {
        padding: 1.5rem;
    }
    
    .gppg__responsible_gaming__hero {
        padding: 2rem 0;
    }
    
    .gppg__responsible_gaming__hero h1 {
        font-size: 2rem;
    }
    
    .gppg__responsible_gaming__hero-subtitle {
        font-size: 1.2rem;
    }
    
    .gppg__responsible_gaming__section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .gppg__responsible_gaming {
        padding: 0.5rem;
    }
    
    .gppg__responsible_gaming__container {
        padding: 0.1rem;
        border-radius: 16px;
    }
    
    .gppg__responsible_gaming__hero {
        padding: 1.5rem 0.3rem;
    }
    
    .gppg__responsible_gaming__hero h1 {
        font-size: 1.7rem;
        text-align: center;
    }
    
    .gppg__responsible_gaming__hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .gppg__responsible_gaming__section {
        padding: 1.2rem 0.1rem;
        margin-bottom: 1.5rem;
    }
    
    .gppg__responsible_gaming__section-intro h2,
    .gppg__responsible_gaming__section-header h2,
    .gppg__responsible_gaming__contact h2 {
        font-size: 1.6rem;
    }
    
    .gppg__responsible_gaming__principle,
    .gppg__responsible_gaming__pattern,
    .gppg__responsible_gaming__feature,
    .gppg__responsible_gaming__resource,
    .gppg__responsible_gaming__guidance-point,
    .gppg__responsible_gaming__control,
    .gppg__responsible_gaming__improvement-step {
        padding: 2rem 0.2rem;
        min-width: 90%;
    }

    .gppg__responsible_gaming__pattern-list li {
        flex-direction: column;
    }
    
    .gppg__responsible_gaming__contact-email {
        font-size: 0.85rem;
        word-break: break-all;
        padding: 1rem;
    }
    
    .gppg__responsible_gaming__section:hover,
    .gppg__responsible_gaming__feature:hover,
    .gppg__responsible_gaming__principle:hover {
        transform: none;
    }
}

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

.gppg__not_found__container {
    max-width: 1000px;
    width: 100%;
    background: rgba(26, 31, 53, 0.95);
    border-radius: 30px;
    padding: 4rem;
    border: 2px solid #ff6b8b;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.gppg__not_found__container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 139, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(6, 214, 160, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.gppg__not_found__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.gppg__not_found__animation {
    flex: 1;
    min-width: 282px;
    position: relative;
    height: 400px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.gppg__not_found__animation-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid;
    animation: notFoundPulse 3s ease-in-out infinite;
}

.gppg__not_found__animation-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    border-color: #ff6b8b;
    animation-delay: 0s;
}

.gppg__not_found__animation-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    border-color: #a855f7;
    animation-delay: 0.5s;
}

.gppg__not_found__animation-circle:nth-child(3) {
    width: 400px;
    height: 400px;
    border-color: #06d6a0;
    animation-delay: 1s;
}

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

.gppg__not_found__animation .material-icons-outlined {
    font-size: 8rem;
    color: #ffd166;
    position: relative;
    z-index: 2;
    animation: notFoundIconFloat 4s ease-in-out infinite;
}

@keyframes notFoundIconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 0 10px rgba(255, 209, 102, 0.3));
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        filter: drop-shadow(0 0 20px rgba(255, 209, 102, 0.6));
    }
}

.gppg__not_found__text {
    flex: 1;
    min-width: 282px;
}

.gppg__not_found__text h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b8b 0%, #ffd166 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gppg__not_found__description {
    color: #e9ecef;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.gppg__not_found__info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gppg__not_found__info-item {
    flex: 1;
    min-width: 250px;
    background: rgba(42, 50, 88, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #3d4a7c;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.gppg__not_found__info-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b8b;
    background: rgba(61, 74, 124, 0.3);
}

.gppg__not_found__info-item .material-icons-outlined {
    font-size: 2rem;
    color: #a855f7;
    flex-shrink: 0;
}

.gppg__not_found__info-item div {
    flex: 1;
    min-width: 200px;
}

.gppg__not_found__info-item h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gppg__not_found__info-item p {
    color: #adb5bd;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.gppg__not_found__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gppg__not_found__home-button,
.gppg__not_found__support-button {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gppg__not_found__home-button {
    background: linear-gradient(135deg, #06d6a0 0%, #a855f7 100%);
    color: #0a0e17;
}

.gppg__not_found__support-button {
    background: rgba(255, 107, 139, 0.1);
    color: #ff6b8b;
    border-color: rgba(255, 107, 139, 0.3);
}

.gppg__not_found__home-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(6, 214, 160, 0.3);
    color: #0a0e17;
}

.gppg__not_found__support-button:hover {
    transform: translateY(-5px);
    background: rgba(255, 107, 139, 0.2);
    color: #ff6b8b;
    box-shadow: 0 10px 20px rgba(255, 107, 139, 0.2);
}

.gppg__not_found__additional {
    background: linear-gradient(135deg, rgba(10, 14, 23, 0.8) 0%, rgba(42, 50, 88, 0.8) 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #3d4a7c;
}

.gppg__not_found__note {
    color: #e9ecef;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gppg__not_found__platform-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 209, 102, 0.1);
    border-radius: 8px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 209, 102, 0.3);
}

.gppg__not_found__platform-info .material-icons-outlined {
    color: #ffd166;
    font-size: 1.5rem;
}

.gppg__not_found__platform-info p {
    color: #ffd166;
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
    min-width: 180px;
}

@media (max-width: 1024px) {
    .gppg__not_found__container {
        padding: 3rem;
    }
    
    .gppg__not_found__text h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .gppg__not_found {
        padding: 1rem 0.3rem;
    }
    
    .gppg__not_found__container {
        padding: 2rem;
    }
    
    .gppg__not_found__content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .gppg__not_found__animation {
        height: 300px;
    }
    
    .gppg__not_found__text h1 {
        font-size: 2.3rem;
    }
    
    .gppg__not_found__description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .gppg__not_found {
        padding: 0.5rem 0.2rem;
    }
    
    .gppg__not_found__container {
        padding: 0.8rem;
        border-radius: 16px;
    }
    
    .gppg__not_found__content {
        gap: 2rem;
    }
    
    .gppg__not_found__animation {
        height: 250px;
        min-width: 80%;
    }
    
    .gppg__not_found__animation-circle:nth-child(1) {
        width: 150px;
        height: 150px;
    }
    
    .gppg__not_found__animation-circle:nth-child(2) {
        width: 200px;
        height: 200px;
    }
    
    .gppg__not_found__animation-circle:nth-child(3) {
        width: 250px;
        height: 250px;
    }
    
    .gppg__not_found__animation .material-icons-outlined {
        font-size: 5rem;
    }
    
    .gppg__not_found__text {
        min-width: 90%;
        padding: 0 0.5rem;
    }
    
    .gppg__not_found__text h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .gppg__not_found__description {
        font-size: 1rem;
        text-align: center;
    }
    
    .gppg__not_found__info-item,
    .gppg__not_found__home-button,
    .gppg__not_found__support-button {
        min-width: 90%;
        padding: 1.5rem 0.2rem;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .gppg__not_found__container,
    .gppg__not_found__text,
    .gppg__not_found__additional {
        padding: 1rem 0.2rem;
    }
    
    .gppg__not_found__info-item:hover,
    .gppg__not_found__home-button:hover,
    .gppg__not_found__support-button:hover {
        transform: none;
    }
}

.gppg__subscribe_page {
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f35 100%);
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gppg__subscribe_page__container {
    max-width: 1200px;
    width: 100%;
    background: rgba(26, 31, 53, 0.95);
    border-radius: 30px;
    padding: 3rem;
    border: 2px solid #a855f7;
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.gppg__subscribe_page__container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 209, 102, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.gppg__subscribe_page__hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.gppg__subscribe_page__hero-content {
    flex: 1;
    min-width: 282px;
}

.gppg__subscribe_page__hero-content .material-icons-outlined {
    font-size: 4rem;
    color: #a855f7;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: subscribeIconFloat 3s ease-in-out infinite;
}

@keyframes subscribeIconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.3));
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
        filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.6));
    }
}

.gppg__subscribe_page__hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #ff6b8b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gppg__subscribe_page__hero-description {
    color: #e9ecef;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.gppg__subscribe_page__stat {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.gppg__subscribe_page__stat .material-icons-outlined {
    font-size: 1rem;
    margin: 0;
    animation: none;
}

.gppg__subscribe_page__hero-visual {
    flex: 1;
    min-width: 282px;
    height: 300px;
    position: relative;
}

.gppg__subscribe_page__visual-element {
    position: absolute;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(255, 107, 139, 0.3));
    animation: subscribeVisualMove 8s ease-in-out infinite;
}

.gppg__subscribe_page__visual-element:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.gppg__subscribe_page__visual-element:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 0;
    right: 0;
    animation-delay: 2s;
}

.gppg__subscribe_page__visual-element:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes subscribeVisualMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(20px, 20px) rotate(270deg);
    }
}

.gppg__subscribe_page__form-section {
    background: linear-gradient(135deg, rgba(10, 14, 23, 0.8) 0%, rgba(42, 50, 88, 0.8) 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 2px solid #3d4a7c;
    position: relative;
    z-index: 1;
}

.gppg__subscribe_page__form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.gppg__subscribe_page__form-header .material-icons-outlined {
    font-size: 3.5rem;
    color: #06d6a0;
    margin-bottom: 1.5rem;
    background: rgba(6, 214, 160, 0.1);
    padding: 1rem;
    border-radius: 50%;
}

.gppg__subscribe_page__form-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gppg__subscribe_page__form-header p {
    color: #adb5bd;
    font-size: 1.1rem;
    line-height: 1.6;
}

.gppg__subscribe_page__form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1.5rem;
}

.gppg__subscribe_page__form-group {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;
}

.gppg__subscribe_page__input-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    background: rgba(10, 14, 23, 0.6);
    border: 2px solid #2a3258;
    border-radius: 12px;
    padding: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.gppg__subscribe_page__input-wrapper:focus-within {
    border-color: #06d6a0;
    box-shadow: 0 0 0 3px rgba(6, 214, 160, 0.2);
    transform: translateY(-2px);
}

.gppg__subscribe_page__input-wrapper .material-icons-outlined {
    color: #6b7bb3;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.gppg__subscribe_page__input-wrapper input {
    flex: 1;
    min-width: 200px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    padding: 0.5rem 0;
    outline: none;
    min-height: 44px;
}

.gppg__subscribe_page__input-wrapper input::placeholder {
    color: #6b7bb3;
}

.gppg__subscribe_page__hint {
    color: #6b7bb3;
    font-size: 0.85rem;
    min-height: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.gppg__subscribe_page__hint.visible {
    opacity: 1;
    transform: translateY(0);
}

.gppg__subscribe_page__checkbox-group {
    margin: 1rem 0;
}

.gppg__subscribe_page__checkbox-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    padding-left: 3rem;
    min-height: 44px;
}

.gppg__subscribe_page__checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 2;
}

.gppg__subscribe_page__checkbox-custom {
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: rgba(10, 14, 23, 0.8);
    border: 2px solid #2a3258;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 1;
}

.gppg__subscribe_page__checkbox-wrapper input[type="checkbox"]:checked ~ .gppg__subscribe_page__checkbox-custom {
    background: #06d6a0;
    border-color: #06d6a0;
}

.gppg__subscribe_page__checkbox-wrapper input[type="checkbox"]:checked ~ .gppg__subscribe_page__checkbox-custom::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 6px;
    height: 12px;
    border: solid #0a0e17;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.gppg__subscribe_page__checkbox-wrapper label {
    flex: 1;
    color: #e9ecef;
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
    pointer-events: none;
    padding-top: 0.25rem;
}

.gppg__subscribe_page__checkbox-wrapper label a {
    color: #6b7bb3;
    text-decoration: underline;
    pointer-events: auto;
    transition: color 0.3s ease;
}

.gppg__subscribe_page__checkbox-wrapper label a:hover {
    color: #ffd166;
}

.gppg__subscribe_page__submit-button {
    background: linear-gradient(135deg, #06d6a0 0%, #a855f7 100%);
    color: #0a0e17;
    border: none;
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.gppg__subscribe_page__submit-button:not(:disabled):hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(6, 214, 160, 0.3);
}

.gppg__subscribe_page__submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.gppg__subscribe_page__form-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 209, 102, 0.1);
    border-radius: 8px;
    padding: 1.2rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 209, 102, 0.3);
}

.gppg__subscribe_page__form-footer .material-icons-outlined {
    color: #ffd166;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.gppg__subscribe_page__form-footer p {
    color: #ffd166;
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.gppg__subscribe_page__benefits {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

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

.gppg__subscribe_page__benefits-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gppg__subscribe_page__benefits-header p {
    color: #adb5bd;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

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

.gppg__subscribe_page__benefit {
    flex: 1;
    min-width: 250px;
    background: rgba(42, 50, 88, 0.5);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #3d4a7c;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gppg__subscribe_page__benefit:hover {
    transform: translateY(-10px);
    border-color: #ff6b8b;
    box-shadow: 0 15px 40px rgba(255, 107, 139, 0.2);
}

.gppg__subscribe_page__benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b8b, #ffd166);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.gppg__subscribe_page__benefit-icon .material-icons-outlined {
    font-size: 3rem;
    color: #ff6b8b;
    background: rgba(255, 107, 139, 0.1);
    padding: 1rem;
    border-radius: 50%;
}

.gppg__subscribe_page__benefit h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.gppg__subscribe_page__benefit p {
    color: #adb5bd;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
}

.gppg__subscribe_page__benefit-tag {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    background: rgba(6, 214, 160, 0.1);
    color: #06d6a0;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(6, 214, 160, 0.3);
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.gppg__subscribe_page__benefit-tag .material-icons-outlined {
    font-size: 1rem;
}

.gppg__subscribe_page__management {
    background: linear-gradient(135deg, rgba(6, 214, 160, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(6, 214, 160, 0.3);
    position: relative;
    z-index: 1;
}

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

.gppg__subscribe_page__management-header .material-icons-outlined {
    font-size: 3.5rem;
    color: #06d6a0;
    margin-bottom: 1.5rem;
    background: rgba(6, 214, 160, 0.1);
    padding: 1rem;
    border-radius: 50%;
}

.gppg__subscribe_page__management-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gppg__subscribe_page__management-header p {
    color: #adb5bd;
    font-size: 1.1rem;
    line-height: 1.6;
}

.gppg__subscribe_page__management-options {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.gppg__subscribe_page__management-option {
    flex: 1;
    min-width: 282px;
    background: rgba(10, 14, 23, 0.6);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
    border: 1px solid #2a3258;
}

.gppg__subscribe_page__option-icon {
    flex-shrink: 0;
}

.gppg__subscribe_page__option-icon .material-icons-outlined {
    font-size: 2.5rem;
    color: #ffd166;
    background: rgba(255, 209, 102, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
}

.gppg__subscribe_page__option-content {
    flex: 1;
    min-width: 200px;
}

.gppg__subscribe_page__option-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gppg__subscribe_page__option-content p {
    color: #adb5bd;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.gppg__subscribe_page__option-list li {
    color: #e9ecef;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.gppg__subscribe_page__option-list li::before {
    content: '✓';
    color: #06d6a0;
    position: absolute;
    left: 0;
}

.gppg__subscribe_page__management-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    background: rgba(107, 123, 179, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(107, 123, 179, 0.3);
}

.gppg__subscribe_page__management-note .material-icons-outlined {
    color: #6b7bb3;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.gppg__subscribe_page__management-note p {
    color: #e9ecef;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.gppg__subscribe_page__success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 23, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

.gppg__subscribe_page__success-content {
    background: linear-gradient(135deg, #1a1f35 0%, #2a3258 100%);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    border: 2px solid #06d6a0;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.gppg__subscribe_page__success-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    color: #adb5bd;
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gppg__subscribe_page__success-close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.gppg__subscribe_page__success-icon {
    margin-bottom: 1.5rem;
}

.gppg__subscribe_page__success-icon .material-icons-outlined {
    font-size: 5rem;
    color: #06d6a0;
    animation: successIconPulse 2s ease-in-out infinite;
}

@keyframes successIconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(6, 214, 160, 0.3));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(6, 214, 160, 0.6));
    }
}

.gppg__subscribe_page__success-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gppg__subscribe_page__success-message {
    color: #e9ecef;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gppg__subscribe_page__success-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: rgba(6, 214, 160, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.gppg__subscribe_page__success-details .material-icons-outlined {
    color: #06d6a0;
    font-size: 1.2rem;
}

.gppg__subscribe_page__success-details p {
    color: #e9ecef;
    font-size: 0.95rem;
    margin: 0;
}

.gppg__subscribe_page__success-button {
    background: linear-gradient(135deg, #a855f7 0%, #ff6b8b 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.gppg__subscribe_page__success-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

@media (max-width: 1024px) {
    .gppg__subscribe_page__container {
        padding: 2rem;
    }
    
    .gppg__subscribe_page__hero h1 {
        font-size: 2.5rem;
    }
    
    .gppg__subscribe_page__form-header h2,
    .gppg__subscribe_page__benefits-header h2,
    .gppg__subscribe_page__management-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .gppg__subscribe_page {
        padding: 1rem;
    }
    
    .gppg__subscribe_page__container {
        padding: 1.5rem;
    }
    
    .gppg__subscribe_page__hero {
        flex-direction: column;
        gap: 3rem;
    }
    
    .gppg__subscribe_page__hero h1 {
        font-size: 2rem;
    }
    
    .gppg__subscribe_page__form-section {
        padding: 2rem;
    }
    
    .gppg__subscribe_page__benefit,
    .gppg__subscribe_page__management-option {
        padding: 2rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .gppg__subscribe_page {
        padding: 0.1rem;
    }
    
    .gppg__subscribe_page__container {
        padding: 0.1rem;
        border-radius: 16px;
    }
    
    .gppg__subscribe_page__hero {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .gppg__subscribe_page__hero h1 {
        font-size: 1.7rem;
        text-align: center;
    }
    
    .gppg__subscribe_page__hero-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .gppg__subscribe_page__form-section {
        padding: 1.2rem 0.8rem;
        margin-bottom: 2rem;
    }

    .gppg__subscribe_page__management {
        padding: 3rem 0.1rem;
    }
    
    .gppg__subscribe_page__form-header h2,
    .gppg__subscribe_page__benefits-header h2,
    .gppg__subscribe_page__management-header h2 {
        font-size: 1.6rem;
    }
    
    .gppg__subscribe_page__input-wrapper input {
        font-size: 16px;
        min-height: 44px;
    }
    
    .gppg__subscribe_page__checkbox-wrapper label {
        font-size: 0.85rem;
    }
    
    .gppg__subscribe_page__checkbox-wrapper label a {
        font-size: 0.85rem;
    }
    
    .gppg__subscribe_page__submit-button {
        padding: 1.2rem 1rem;
        font-size: 1rem;
    }
    
    .gppg__subscribe_page__success-content {
        padding: 1.5rem 0.8rem;
    }
    
    .gppg__subscribe_page__success-content h3 {
        font-size: 1.5rem;
    }
    
    .gppg__subscribe_page__success-message {
        font-size: 1rem;
    }
    
    .gppg__subscribe_page__benefit:hover,
    .gppg__subscribe_page__submit-button:hover,
    .gppg__subscribe_page__success-button:hover {
        transform: none;
    }
}