:root {
    --rbg-deep-space: #0a0a14;
    --rbg-cosmic-purple: #2d1b69;
    --rbg-neon-blue: #00d4ff;
    --rbg-electric-purple: #a855f7;
    --rbg-stellar-gray: #1e1e2d;
    --rbg-galactic-white: #f8fafc;
    --rbg-meteor-orange: #ff6b35;
    --rbg-comet-cyan: #06d6a0;
}

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

body {
    font-family: 'Lora', serif;
    background: linear-gradient(135deg, var(--rbg-deep-space) 0%, var(--rbg-cosmic-purple) 100%);
    color: var(--rbg-galactic-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.rbg__header_navigation {
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rbg-electric-purple);
    padding: 1rem 0;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.rbg__header_logo-section {
    display: flex;
    align-items: center;
}

.rbg__header_homelink {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--rbg-galactic-white);
    transition: transform 0.3s ease;
}

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

.rbg__header_logo {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
}

.rbg__header_sitename {
    font-family: 'Marcellus', serif;
    font-size: 1.5rem;
    color: var(--rbg-neon-blue);
}

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

.rbg__header_link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--rbg-galactic-white);
    transition: color 0.3s ease;
    font-weight: 500;
}

.rbg__header_link:hover {
    color: var(--rbg-neon-blue);
}

.rbg__header_link i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.rbg__header_burger {
    display: none;
    background: none;
    border: none;
    color: var(--rbg-galactic-white);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rbg__header_burger:hover {
    color: var(--rbg-neon-blue);
}

.rbg__welcome_introduction {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 2rem;
}

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

.rbg__welcome_droplet {
    position: absolute;
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, transparent, var(--rbg-neon-blue));
    border-radius: 50%;
    animation: droplet-fall 6s linear infinite;
    opacity: 0.6;
}

.rbg__welcome_droplet:nth-child(1) { left: 10%; animation-delay: 0s; }
.rbg__welcome_droplet:nth-child(2) { left: 20%; animation-delay: 1s; }
.rbg__welcome_droplet:nth-child(3) { left: 30%; animation-delay: 2s; }
.rbg__welcome_droplet:nth-child(4) { left: 40%; animation-delay: 3s; }
.rbg__welcome_droplet:nth-child(5) { left: 50%; animation-delay: 4s; }
.rbg__welcome_droplet:nth-child(6) { left: 60%; animation-delay: 5s; }
.rbg__welcome_droplet:nth-child(7) { left: 70%; animation-delay: 0.5s; }
.rbg__welcome_droplet:nth-child(8) { left: 80%; animation-delay: 1.5s; }

@keyframes droplet-fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.rbg__welcome_content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.rbg__welcome_content h1 {
    font-family: 'Marcellus', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--rbg-neon-blue), var(--rbg-electric-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: title-glow 3s ease-in-out infinite alternate;
}

@keyframes title-glow {
    from {
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5));
    }
}

.rbg__welcome_subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--rbg-comet-cyan);
}

.rbg__welcome_disclaimer {
    background: rgba(30, 30, 45, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--rbg-meteor-orange);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.rbg__welcome_disclaimer i {
    color: var(--rbg-meteor-orange);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.rbg__welcome_disclaimer p {
    text-align: left;
    font-size: 0.95rem;
    min-height: 60px;
}

.rbg__platforms_selection {
    padding: 5rem 0;
    background: var(--rbg-stellar-gray);
}

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

.rbg__platforms_container h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--rbg-neon-blue);
}

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

.rbg__platforms_item {
    background: linear-gradient(135deg, var(--rbg-deep-space), var(--rbg-cosmic-purple));
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--rbg-electric-purple);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.rbg__platforms_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.2), transparent);
    transition: left 0.6s ease;
}

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

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

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

.rbg__platforms_image {
    width: 220px;
    height: 120px;
    border-radius: 15px;
    border: 2px solid var(--rbg-neon-blue);
}

.rbg__platforms_info h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--rbg-galactic-white);
}

.rbg__platforms_rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--rbg-comet-cyan);
}

.rbg__platforms_rating i {
    color: var(--rbg-meteor-orange);
}

.rbg__platforms_payments {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--rbg-comet-cyan);
    font-size: 0.9rem;
}

.rbg__platforms_link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--rbg-neon-blue);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--rbg-neon-blue);
    border-radius: 25px;
    background: transparent;
}

.rbg__platforms_link:hover {
    background: var(--rbg-neon-blue);
    color: var(--rbg-deep-space);
    transform: scale(1.05);
}

.rbg__criteria_evaluation {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--rbg-cosmic-purple), var(--rbg-deep-space));
}

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

.rbg__criteria_container h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--rbg-comet-cyan);
}

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

.rbg__criteria_card {
    background: rgba(30, 30, 45, 0.8);
    border-radius: 20px;
    padding: 2rem;
    flex: 1 1 250px;
    max-width: 280px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.rbg__criteria_card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--rbg-neon-blue), var(--rbg-electric-purple));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.rbg__criteria_card:hover::after {
    transform: scaleX(1);
}

.rbg__criteria_card:hover {
    transform: translateY(-10px);
    border-color: var(--rbg-neon-blue);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.rbg__criteria_card i {
    font-size: 3rem;
    color: var(--rbg-neon-blue);
    margin-bottom: 1rem;
}

.rbg__criteria_card h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--rbg-galactic-white);
}

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

.rbg__criteria_list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(248, 250, 252, 0.1);
    position: relative;
    padding-left: 1.5rem;
    min-height: 44px;
}

.rbg__criteria_list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--rbg-comet-cyan);
}

.rbg__responsible_gaming {
    padding: 5rem 0;
    background: var(--rbg-stellar-gray);
}

.rbg__responsible_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.rbg__responsible_container h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--rbg-meteor-orange);
}

.rbg__responsible_description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--rbg-comet-cyan);
}

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

.rbg__responsible_link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.rbg__responsible_link img {
    width: 150px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.rbg__responsible_link:hover img {
    filter: grayscale(0%);
}

.rbg__responsible_age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 3px solid var(--rbg-meteor-orange);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--rbg-meteor-orange);
    animation: pulse-age 2s infinite;
}

@keyframes pulse-age {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
}

.rbg__footer_information {
    background: var(--rbg-deep-space);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--rbg-electric-purple);
}

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

.rbg__footer_responsible {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
}

.rbg__footer_responsible h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--rbg-comet-cyan);
}

.rbg__footer_responsible p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
    min-height: 80px;
}

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

.rbg__footer_partners a {
    transition: transform 0.3s ease;
}

.rbg__footer_partners a:hover {
    transform: scale(1.1);
}

.rbg__footer_partners img {
    width: 100px;
    height: 40px;
    object-fit: contain;
}

.rbg__footer_links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
}

.rbg__footer_sitelink {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--rbg-neon-blue);
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.rbg__footer_sitelink:hover {
    color: var(--rbg-electric-purple);
}

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

.rbg__footer_nav a {
    text-decoration: none;
    color: var(--rbg-galactic-white);
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.rbg__footer_nav a:hover {
    color: var(--rbg-neon-blue);
}

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

.rbg__footer_legal p {
    color: var(--rbg-comet-cyan);
    font-size: 0.9rem;
}

.rbg__footer_social {
    display: flex;
    gap: 1rem;
}

.rbg__footer_social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.1);
    color: var(--rbg-galactic-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.rbg__footer_social a:hover {
    background: var(--rbg-electric-purple);
    transform: scale(1.1);
}

.cookie-consent-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--rbg-stellar-gray), var(--rbg-deep-space));
    border-top: 2px solid var(--rbg-comet-cyan);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

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

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

.cookie-message-section {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.cookie-message-section i {
    color: var(--rbg-comet-cyan);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.cookie-text-block {
    flex: 1;
}

.cookie-text-block p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.cookie-text-block a {
    color: var(--rbg-neon-blue);
    text-decoration: none;
    font-size: 0.9rem;
}

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

.cookie-accept-button {
    background: linear-gradient(135deg, var(--rbg-comet-cyan), var(--rbg-neon-blue));
    color: var(--rbg-deep-space);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(6, 214, 160, 0.4);
}

.age-verification-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 20, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-check-dialog {
    background: linear-gradient(135deg, var(--rbg-stellar-gray), var(--rbg-cosmic-purple));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 2px solid var(--rbg-meteor-orange);
    animation: dialog-appear 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dialog-appear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.age-verification-icon {
    font-size: 4rem;
    color: var(--rbg-meteor-orange);
    margin-bottom: 1.5rem;
    animation: icon-bounce 2s infinite;
}

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

.age-check-dialog h2 {
    font-family: 'Marcellus', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--rbg-galactic-white);
}

.age-check-dialog p {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--rbg-comet-cyan);
}

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

.age-confirm-button {
    background: linear-gradient(135deg, var(--rbg-comet-cyan), var(--rbg-neon-blue));
    color: var(--rbg-deep-space);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.age-confirm-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(6, 214, 160, 0.4);
}

.age-deny-button {
    background: transparent;
    color: var(--rbg-meteor-orange);
    border: 2px solid var(--rbg-meteor-orange);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.age-deny-button:hover {
    background: var(--rbg-meteor-orange);
    color: var(--rbg-deep-space);
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .rbg__header_container {
        padding: 0 1.5rem;
    }
    
    .rbg__welcome_content h1 {
        font-size: 3rem;
    }
    
    .rbg__platforms_header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .rbg__criteria_grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .rbg__header_links-section {
        display: none;
    }
    
    .rbg__header_burger {
        display: block;
    }
    
    .rbg__header_container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .rbg__header_logo-section {
        justify-content: center;
    }
    
    .rbg__welcome_content h1 {
        font-size: 2.5rem;
    }
    
    .rbg__welcome_subtitle {
        font-size: 1.1rem;
    }
    
    .rbg__welcome_disclaimer {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .rbg__platforms_item {
        padding: 1.5rem;
    }
    
    .rbg__responsible_partners {
        flex-direction: column;
    }
    
    .rbg__footer_links {
        flex-direction: column;
        text-align: center;
    }
    
    .rbg__footer_nav {
        justify-content: center;
    }
    
    .cookie-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .age-confirmation-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .rbg__header_container,
    .rbg__platforms_container,
    .rbg__criteria_container,
    .rbg__responsible_container,
    .rbg__footer_container {
        padding: 0 0.5rem;
    }
    
    .rbg__welcome_content h1 {
        font-size: 2rem;
    }
    
    .rbg__welcome_subtitle {
        font-size: 1rem;
    }
    
    .rbg__platforms_image {
        height: 100px;
    }
    
    .rbg__platforms_info h3 {
        font-size: 1.5rem;
    }
    
    .rbg__criteria_card {
        padding: 1rem;
    }
    
    .rbg__footer_responsible p {
        min-height: 100px;
    }
    
    .cookie-consent-panel,
    .age-check-dialog {
        padding: 1rem;
    }
    
    .rbg__welcome_droplet,
    .rbg__platforms_item::before,
    .rbg__criteria_card::after {
        animation: none;
        transition: none;
    }
    
    .rbg__platforms_item:hover,
    .rbg__criteria_card:hover,
    .rbg__platforms_link:hover,
    .rbg__footer_social a:hover,
    .cookie-accept-button:hover,
    .age-confirm-button:hover,
    .age-deny-button:hover {
        transform: none;
    }
}

@media (max-width: 320px) {
    .rbg__welcome_content h1 {
        font-size: 1.8rem;
    }
    
    .rbg__platforms_header {
        gap: 0.5rem;
    }
    
    .rbg__platforms_image {
        height: 80px;
    }
    
    .rbg__criteria_card {
        flex: 1 1 200px;
    }
    
    .age-check-dialog {
        width: 95%;
        padding: 1.5rem;
    }
}
