@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(145deg, #070b17 0%, #0e1222 100%);
    color: #e8edf5;
    line-height: 1.5;
}

.gr-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 6, 18, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(114, 79, 255, 0.2);
    transition: all 0.3s ease;
}

.gr-navbar.scrolled {
    background: rgba(3, 6, 18, 1);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

.gr-nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gr-logo-img {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(114, 79, 255, 0.5));
}

.gr-nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
}

.gr-nav-links li a {
    color: #b8c3e0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.gr-nav-links li a:hover,
.gr-nav-links li a.gr-nav-active {
    color: #7c3aed;
    text-shadow: 0 0 8px rgba(124, 58, 237, 0.5);
}

.gr-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.gr-hamburger span {
    width: 26px;
    height: 2px;
    background: #7c3aed;
    margin: 4px 0;
    transition: 0.3s;
}

.gr-nav-mobile {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #030612;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transition: 0.3s ease;
    z-index: 999;
    list-style: none;
}

.gr-nav-mobile.active {
    left: 0;
}

.gr-nav-mobile li {
    margin: 25px 0;
}

.gr-nav-mobile li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
}

.gr-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 30%, #0f0b2a 0%, #02040f 100%);
}

.gr-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background: repeating-linear-gradient(45deg, rgba(124,58,237,0.08) 0px, rgba(124,58,237,0.08) 2px, transparent 2px, transparent 8px);
}

.gr-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.gr-hero-text h1 {
    font-family: 'Orbitron', monospace;
    font-size: 58px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #a855f7, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.gr-hero-text p {
    color: #9ca3af;
    font-size: 16px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.gr-cta-button {
    display: inline-block;
    padding: 14px 42px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(124,58,237,0.4);
}

.gr-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124,58,237,0.5);
}

.gr-hero-visual {
    width: 460px;
    height: 420px;
    border-radius: 40px;
    overflow: hidden;
    border: 2px solid rgba(124,58,237,0.5);
    box-shadow: 0 25px 45px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.gr-hero-visual:hover {
    border-color: #a855f7;
    transform: scale(1.02);
}

.gr-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gr-warning-banner {
    background: linear-gradient(95deg, #2e0f17 0%, #200b0e 100%);
    border-left: 6px solid #7c3aed;
    border-right: 6px solid #a855f7;
    margin: 40px auto;
    border-radius: 20px;
    max-width: 1300px;
    padding: 20px 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.gr-warning-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin: 0 auto;
}

.gr-warning-icon {
    font-size: 48px;
    background: rgba(124,58,237,0.2);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    flex-shrink: 0;
}

.gr-warning-content {
    flex: 1;
}

.gr-warning-title {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    font-weight: 800;
    color: #c084fc;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.gr-warning-text {
    color: #b0a8d4;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.gr-warning-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gr-warning-tags span {
    background: rgba(124,58,237,0.2);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #b794ff;
}

.gr-dashboard {
    padding: 80px 0;
}

.gr-dashboard-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.gr-section-title {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 42px;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #e8edf5, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gr-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.gr-stat-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s;
    backdrop-filter: blur(4px);
}

.gr-stat-card:hover {
    transform: translateY(-8px);
    border-color: #a855f7;
    box-shadow: 0 20px 35px rgba(0,0,0,0.3);
}

.gr-game-image {
    height: 230px;
    overflow: hidden;
}

.gr-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gr-stat-card:hover .gr-game-image img {
    transform: scale(1.08);
}

.gr-game-info {
    padding: 22px;
    text-align: center;
}

.gr-game-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #c4b5fd;
}

.gr-game-btn {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    padding: 10px 28px;
    border-radius: 40px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.gr-game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124,58,237,0.5);
}

.gr-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.gr-metric-item {
    background: rgba(124,58,237,0.08);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 24px;
    padding: 28px 20px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.gr-metric-value {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gr-metric-label {
    color: #9ca3af;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 500;
}

.gr-new-games {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(124,58,237,0.05) 0%, transparent 100%);
}

.gr-new-header {
    text-align: center;
    margin-bottom: 50px;
}

.gr-new-subtitle {
    color: #9ca3af;
    font-size: 16px;
    margin-top: -20px;
}

.gr-new-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.gr-new-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.gr-new-card:hover {
    transform: translateY(-8px);
    border-color: #a855f7;
    box-shadow: 0 25px 40px rgba(124,58,237,0.2);
}

.gr-new-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: linear-gradient(135deg, #d43f1f, #f5b042);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.gr-new-badge-purple {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.gr-new-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.gr-new-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gr-new-card:hover .gr-new-image img {
    transform: scale(1.05);
}

.gr-new-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(124,58,237,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gr-new-card:hover .gr-new-overlay {
    opacity: 1;
}

.gr-new-play {
    background: white;
    color: #7c3aed;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    transition: 0.3s;
}

.gr-new-play:hover {
    transform: scale(1.05);
    background: #7c3aed;
    color: white;
}

.gr-new-info {
    padding: 24px;
}

.gr-new-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gr-new-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.gr-new-category {
    background: rgba(124,58,237,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #c084fc;
}

.gr-new-rating {
    color: #fbbf24;
    font-size: 13px;
    font-weight: 600;
}

.gr-new-desc {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.gr-new-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.gr-new-features span {
    background: rgba(255,255,255,0.05);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #a855f7;
    letter-spacing: 0.5px;
}

.gr-new-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    text-decoration: none;
    padding: 12px 0;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gr-new-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124,58,237,0.4);
}

.gr-about {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(124,58,237,0.03) 0%, rgba(0,0,0,0) 100%);
}

.gr-about-header {
    text-align: center;
    margin-bottom: 60px;
}

.gr-about-subtitle {
    color: #9ca3af;
    font-size: 16px;
    margin-top: -20px;
}

.gr-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.gr-about-story {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(124,58,237,0.25);
    border-radius: 32px;
    padding: 35px;
    transition: all 0.3s ease;
}

.gr-about-story:hover {
    border-color: #a855f7;
    transform: translateY(-5px);
}

.gr-about-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.gr-about-story h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gr-about-story p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: 15px;
}

.gr-about-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(124,58,237,0.3);
}

.gr-about-stat {
    text-align: center;
    flex: 1;
}

.gr-stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gr-stat-label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 5px;
}

.gr-about-mission {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gr-mission-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(124,58,237,0.25);
    border-radius: 24px;
    padding: 25px;
    transition: all 0.3s ease;
}

.gr-mission-card:hover {
    border-color: #a855f7;
    transform: translateX(5px);
}

.gr-mission-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.gr-mission-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #c4b5fd;
    margin-bottom: 12px;
}

.gr-mission-card p {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 8px;
}

.gr-values-list {
    list-style: none;
    padding: 0;
}

.gr-values-list li {
    color: #9ca3af;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(124,58,237,0.2);
}

.gr-values-list li:last-child {
    border-bottom: none;
}

.gr-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.gr-custom-form {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 28px;
    padding: 35px;
}

.gr-form-group {
    margin-bottom: 22px;
}

.gr-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #c4b5fd;
    font-size: 14px;
    font-weight: 600;
}

.gr-form-group input,
.gr-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(124,58,237,0.4);
    border-radius: 16px;
    color: white;
    font-size: 15px;
}

.gr-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border: none;
    padding: 15px;
    border-radius: 50px;
    color: white;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gr-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124,58,237,0.4);
}

.gr-contact-info {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 28px;
    padding: 35px;
}

.gr-contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.gr-contact-icon {
    font-size: 32px;
}

.gr-contact-details h4 {
    font-size: 17px;
    margin-bottom: 6px;
    color: #c4b5fd;
}

.gr-contact-details p {
    color: #9ca3af;
    font-size: 14px;
}

.gr-footer {
    background: #030612;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(124,58,237,0.3);
}

.gr-footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.gr-footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.gr-footer-item h3 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #a855f7;
    font-family: 'Orbitron', monospace;
}

.gr-footer-item p, .gr-footer-links li a {
    color: #9ca3af;
    font-size: 14px;
    text-decoration: none;
}

.gr-footer-links {
    list-style: none;
}

.gr-footer-links li {
    margin-bottom: 12px;
}

.gr-footer-links li a:hover {
    color: #c084fc;
}

.gr-footer-responsible {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(124,58,237,0.2);
}

.gr-responsible-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.gr-responsible-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 8px 22px;
    border-radius: 50px;
    text-decoration: none;
}

.gr-responsible-img {
    height: 28px;
    width: auto;
}

.gr-responsible-text {
    color: #1f1a3a;
    font-size: 13px;
    font-weight: 700;
}

.gr-footer-disclaimer {
    text-align: center;
    padding: 18px 0;
    font-size: 12px;
    color: #6b7280;
}

.gr-footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    color: #4b5563;
}

.gr-age-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(12px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.gr-age-modal-content {
    background: linear-gradient(135deg, #0e0b25, #030612);
    border: 2px solid #7c3aed;
    border-radius: 40px;
    padding: 50px;
    text-align: center;
    max-width: 480px;
}

.gr-age-modal-icon {
    font-size: 80px;
}

.gr-age-modal-content h2 {
    color: #a855f7;
    margin: 15px 0;
    font-family: 'Orbitron', monospace;
}

.gr-age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.gr-age-btn {
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.gr-confirm {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
}

.gr-decline {
    background: rgba(255,255,255,0.15);
    color: white;
}

.gr-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #0e0b25;
    border: 1px solid #7c3aed;
    border-radius: 20px;
    padding: 16px 24px;
    z-index: 9999;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.gr-cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.gr-cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.gr-cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9ca3af;
    font-size: 13px;
    flex: 1;
}

.gr-cookie-icon {
    width: 24px;
    height: 24px;
}

.gr-cookie-text a {
    color: #a855f7;
}

.gr-cookie-buttons {
    display: flex;
    gap: 12px;
}

.gr-cookie-btn {
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.gr-cookie-btn.gr-accept {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
}

.gr-cookie-btn.gr-decline {
    background: rgba(255,255,255,0.1);
    color: white;
}

@media (max-width: 1200px) {
    .gr-hero-text h1 {
        font-size: 52px;
    }
    .gr-hero-visual {
        width: 420px;
        height: 380px;
    }
}

@media (max-width: 992px) {
    .gr-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 30px;
    }
    .gr-hero-text h1 {
        font-size: 48px;
    }
    .gr-hero-text p {
        font-size: 16px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .gr-hero-visual {
        margin: 0 auto;
        width: 400px;
        height: 360px;
    }
    .gr-stats-grid {
        gap: 25px;
    }
    .gr-metrics-grid {
        gap: 20px;
    }
    .gr-contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .gr-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .gr-new-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .gr-section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .gr-nav-links {
        display: none;
    }
    .gr-hamburger {
        display: flex;
    }
    .gr-nav-container {
        padding: 12px 20px;
    }
    .gr-logo-img {
        height: 32px;
    }
    .gr-hero {
        min-height: 90vh;
    }
    .gr-hero-text h1 {
        font-size: 38px;
        line-height: 1.2;
    }
    .gr-hero-text p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    .gr-cta-button {
        padding: 12px 32px;
        font-size: 14px;
    }
    .gr-hero-visual {
        width: 340px;
        height: 300px;
    }
    .gr-warning-banner {
        margin: 25px 15px;
        padding: 16px 20px;
    }
    .gr-warning-title {
        font-size: 18px;
    }
    .gr-warning-text {
        font-size: 13px;
    }
    .gr-warning-tags span {
        font-size: 11px;
        padding: 4px 12px;
    }
    .gr-section-title {
        font-size: 28px;
    }
    .gr-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }
    .gr-game-image {
        height: 200px;
    }
    .gr-game-title {
        font-size: 18px;
    }
    .gr-game-btn {
        padding: 8px 22px;
        font-size: 14px;
    }
    .gr-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .gr-metric-item {
        padding: 20px 15px;
    }
    .gr-metric-value {
        font-size: 28px;
    }
    .gr-new-header {
        margin-bottom: 35px;
    }
    .gr-new-subtitle {
        font-size: 14px;
    }
    .gr-new-image {
        height: 200px;
    }
    .gr-new-title {
        font-size: 20px;
    }
    .gr-new-desc {
        font-size: 13px;
    }
    .gr-new-features span {
        font-size: 10px;
        padding: 4px 10px;
    }
    .gr-about-header {
        margin-bottom: 40px;
    }
    .gr-about-subtitle {
        font-size: 14px;
    }
    .gr-about-story {
        padding: 25px;
    }
    .gr-about-story h3 {
        font-size: 24px;
    }
    .gr-about-story p {
        font-size: 14px;
    }
    .gr-about-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .gr-about-stat {
        min-width: 90px;
    }
    .gr-stat-number {
        font-size: 24px;
    }
    .gr-mission-card {
        padding: 20px;
    }
    .gr-mission-card h4 {
        font-size: 18px;
    }
    .gr-mission-card p {
        font-size: 13px;
    }
    .gr-values-list li {
        font-size: 13px;
    }
    .gr-custom-form {
        padding: 25px;
    }
    .gr-contact-info {
        padding: 25px;
    }
    .gr-contact-icon {
        font-size: 28px;
    }
    .gr-contact-details h4 {
        font-size: 16px;
    }
    .gr-footer-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .gr-footer-item h3 {
        font-size: 18px;
    }
    .gr-responsible-icons {
        gap: 15px;
    }
    .gr-responsible-item {
        padding: 6px 16px;
    }
    .gr-responsible-img {
        height: 24px;
    }
    .gr-responsible-text {
        font-size: 11px;
    }
    .gr-cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .gr-cookie-text {
        flex-direction: column;
        text-align: center;
    }
    .gr-cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    .gr-cookie-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .gr-nav-container {
        padding: 10px 15px;
    }
    .gr-hero-text h1 {
        font-size: 32px;
    }
    .gr-hero-text p {
        font-size: 14px;
    }
    .gr-cta-button {
        padding: 10px 28px;
        font-size: 13px;
    }
    .gr-hero-visual {
        width: 280px;
        height: 250px;
    }
    .gr-warning-banner {
        margin: 20px 12px;
        padding: 14px 16px;
    }
    .gr-warning-icon {
        width: 48px;
        height: 48px;
        font-size: 32px;
    }
    .gr-warning-title {
        font-size: 16px;
    }
    .gr-warning-text {
        font-size: 12px;
    }
    .gr-section-title {
        font-size: 24px;
    }
    .gr-game-image {
        height: 180px;
    }
    .gr-metrics-grid {
        grid-template-columns: 1fr;
    }
    .gr-new-image {
        height: 180px;
    }
    .gr-new-title {
        font-size: 18px;
    }
    .gr-new-info {
        padding: 15px;
    }
    .gr-new-features {
        gap: 8px;
    }
    .gr-new-features span {
        font-size: 9px;
        padding: 3px 8px;
    }
    .gr-new-btn {
        padding: 10px 0;
        font-size: 13px;
    }
    .gr-about-story {
        padding: 20px;
    }
    .gr-about-story h3 {
        font-size: 22px;
    }
    .gr-about-story p {
        font-size: 13px;
    }
    .gr-stat-number {
        font-size: 20px;
    }
    .gr-stat-label {
        font-size: 11px;
    }
    .gr-mission-card {
        padding: 16px;
    }
    .gr-mission-icon {
        font-size: 28px;
    }
    .gr-mission-card h4 {
        font-size: 16px;
    }
    .gr-custom-form, .gr-contact-info {
        padding: 20px;
    }
    .gr-form-group input, .gr-form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    .gr-submit-btn {
        padding: 12px;
        font-size: 14px;
    }
    .gr-contact-item {
        gap: 12px;
        margin-bottom: 20px;
    }
    .gr-footer-disclaimer {
        font-size: 10px;
    }
    .gr-footer-bottom {
        font-size: 10px;
    }
    .gr-age-modal-content {
        padding: 30px 25px;
        max-width: 90%;
    }
    .gr-age-modal-icon {
        font-size: 60px;
    }
    .gr-age-modal-content h2 {
        font-size: 22px;
    }
    .gr-age-modal-content p {
        font-size: 13px;
    }
    .gr-age-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .gr-hero-text h1 {
        font-size: 28px;
    }
    .gr-hero-visual {
        width: 260px;
        height: 230px;
    }
    .gr-game-title {
        font-size: 16px;
    }
    .gr-game-btn {
        padding: 6px 18px;
        font-size: 12px;
    }
    .gr-new-title {
        font-size: 16px;
    }
    .gr-new-desc {
        font-size: 12px;
    }
    .gr-about-story h3 {
        font-size: 20px;
    }
    .gr-about-stat {
        min-width: 70px;
    }
    .gr-stat-number {
        font-size: 18px;
    }
    .gr-responsible-item {
        padding: 5px 12px;
    }
    .gr-responsible-img {
        height: 20px;
    }
    .gr-responsible-text {
        font-size: 10px;
    }
}

/* ========== GAME ARENA SECTION ========== */
.gr-game-arena {
    padding: 80px 0;
    background: linear-gradient(135deg, #070b17 0%, #0e1222 100%);
    min-height: 100vh;
}

.gr-game-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.gr-game-alert {
    background: rgba(124, 58, 237, 0.12);
    border-left: 4px solid #7c3aed;
    border-radius: 12px;
    padding: 14px 22px;
    margin-bottom: 25px;
}

.gr-game-alert-top {
    background: linear-gradient(95deg, rgba(124,58,237,0.08), rgba(168,85,247,0.05));
    border-left: 4px solid #a855f7;
}

.gr-game-alert-bottom {
    background: linear-gradient(95deg, rgba(212,63,31,0.08), rgba(245,176,66,0.05));
    border-left: 4px solid #f5b042;
    margin-top: 25px;
    margin-bottom: 0;
}

.gr-game-alert p {
    color: #c4b5fd;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.gr-game-alert strong {
    color: #ffffff;
    font-weight: 700;
}

.gr-game-alert-top strong {
    color: #c084fc;
}

.gr-game-alert-bottom strong {
    color: #f5b042;
}

.gr-game-frame-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    background: #030612;
    border-radius: 28px;
    overflow: hidden;
    border: 2px solid rgba(124, 58, 237, 0.4);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.gr-game-frame-wrapper:hover {
    border-color: #a855f7;
    box-shadow: 0 30px 55px rgba(124, 58, 237, 0.2);
}

.gr-game-iframe {
    display: block;
    border: none;
    background: #000;
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .gr-game-frame-wrapper {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .gr-game-arena {
        padding: 50px 0;
    }
    
    .gr-game-container {
        padding: 0 20px;
    }
    
    .gr-game-frame-wrapper {
        height: 450px;
        border-radius: 20px;
    }
    
    .gr-game-alert {
        padding: 12px 18px;
    }
    
    .gr-game-alert p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .gr-game-arena {
        padding: 35px 0;
    }
    
    .gr-game-frame-wrapper {
        height: 350px;
        border-radius: 16px;
    }
    
    .gr-game-alert {
        padding: 10px 15px;
    }
    
    .gr-game-alert p {
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .gr-game-frame-wrapper {
        height: 300px;
    }
}

/* ========== GAME LIBRARY (ALL GAMES) ========== */
.gr-game-library {
    padding: 60px 0;
    background: linear-gradient(135deg, #070b17 0%, #0e1222 100%);
    min-height: 100vh;
}

.gr-library-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.gr-library-title {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 42px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.gr-library-subtitle {
    text-align: center;
    color: #9ca3af;
    font-size: 16px;
    margin-bottom: 50px;
}

.gr-library-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.gr-library-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.gr-library-card:hover {
    transform: translateY(-6px);
    border-color: #a855f7;
    box-shadow: 0 20px 35px rgba(124, 58, 237, 0.2);
}

.gr-library-card-link {
    display: block;
    text-decoration: none;
    width: 100%;
}

.gr-library-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #030612;
}

.gr-library-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gr-library-card:hover .gr-library-image img {
    transform: scale(1.05);
}

.gr-library-info {
    padding: 18px;
    text-align: center;
}

.gr-library-name {
    color: #c4b5fd;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.gr-library-play {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #ffffff;
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gr-library-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
    color: #ffffff;
}

/* Tablet */
@media (max-width: 1024px) {
    .gr-library-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .gr-library-title {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .gr-game-library {
        padding: 40px 0;
    }
    
    .gr-library-container {
        padding: 0 20px;
    }
    
    .gr-library-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gr-library-title {
        font-size: 30px;
        margin-top: 10px;
    }
    
    .gr-library-subtitle {
        font-size: 14px;
        margin-bottom: 35px;
    }
    
    .gr-library-image {
        height: 180px;
    }
    
    .gr-library-name {
        font-size: 16px;
    }
    
    .gr-library-play {
        padding: 6px 18px;
        font-size: 13px;
    }
}

/* Small mobile */
@media (max-width: 550px) {
    .gr-library-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .gr-library-image {
        height: 200px;
    }
    
    .gr-library-title {
        font-size: 26px;
    }
}

/* ========== TOP GAMES SECTION ========== */
.gr-top-games {
    padding: 80px 0;
    background: linear-gradient(135deg, #070b17 0%, #0e1222 100%);
}

.gr-top-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.gr-top-header {
    text-align: center;
    margin-bottom: 50px;
}

.gr-top-title {
    font-family: 'Orbitron', monospace;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #f5b042, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gr-top-subtitle {
    color: #9ca3af;
    font-size: 16px;
}

.gr-top-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gr-top-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 24px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gr-top-card:hover {
    transform: translateY(-4px);
    border-color: #a855f7;
    background: rgba(124, 58, 237, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.gr-top-rank {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #2a1a4a, #1a0f2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #c084fc;
    border: 2px solid #7c3aed;
    z-index: 2;
}

.rank-1 .gr-top-rank {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1a1a2e;
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.rank-2 .gr-top-rank {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: #1a1a2e;
    border-color: #c0c0c0;
}

.rank-3 .gr-top-rank {
    background: linear-gradient(135deg, #cd7f32, #b87333);
    color: #1a1a2e;
    border-color: #cd7f32;
}

.gr-top-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    background: #030612;
}

.gr-top-link {
    display: block;
    width: 100%;
    height: 100%;
}

.gr-top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gr-top-card:hover .gr-top-image img {
    transform: scale(1.05);
}

.gr-top-info {
    flex: 1;
}

.gr-top-name {
    font-size: 20px;
    font-weight: 700;
    color: #c4b5fd;
    margin-bottom: 8px;
}

.gr-top-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.gr-top-plays {
    font-size: 13px;
    color: #f5b042;
    font-weight: 600;
}

.gr-top-rating {
    font-size: 13px;
    color: #c084fc;
    font-weight: 600;
}

.gr-top-play {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #ffffff;
    text-decoration: none;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gr-top-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

@media (max-width: 900px) {
    .gr-top-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }
    
    .gr-top-title {
        font-size: 34px;
    }
}

@media (max-width: 550px) {
    .gr-top-games {
        padding: 50px 0;
    }
    
    .gr-top-container {
        padding: 0 20px;
    }
    
    .gr-top-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .gr-top-rank {
        top: -8px;
        left: -8px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .gr-top-image {
        width: 130px;
        height: 130px;
        margin-top: 10px;
    }
    
    .gr-top-stats {
        justify-content: center;
    }
    
    .gr-top-title {
        font-size: 28px;
    }
    
    .gr-top-subtitle {
        font-size: 14px;
    }
}

/* ========== MONTHLY TOP GAMES ========== */
.gr-monthly-top {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #060914 100%);
}

.gr-monthly-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.gr-monthly-header {
    text-align: center;
    margin-bottom: 40px;
}

.gr-monthly-title {
    font-family: 'Orbitron', monospace;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #a855f7, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gr-monthly-subtitle {
    color: #9ca3af;
    font-size: 16px;
}

.gr-monthly-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gr-monthly-stat-item {
    text-align: center;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 24px;
    padding: 20px 35px;
    min-width: 160px;
}

.gr-monthly-stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gr-monthly-stat-label {
    color: #9ca3af;
    font-size: 14px;
    margin-top: 8px;
}

.gr-monthly-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gr-monthly-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 28px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gr-monthly-card:hover {
    transform: translateY(-6px);
    border-color: #a855f7;
    background: rgba(124, 58, 237, 0.05);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

.gr-monthly-card.rank-1 {
    border-top: 3px solid #ffd700;
}

.gr-monthly-card.rank-2 {
    border-top: 3px solid #c0c0c0;
}

.gr-monthly-card.rank-3 {
    border-top: 3px solid #cd7f32;
}

.gr-monthly-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, 0.2);
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.gr-monthly-badge.gold {
    background: rgba(255, 215, 0, 0.2);
}
.gr-monthly-badge.silver {
    background: rgba(192, 192, 192, 0.2);
}
.gr-monthly-badge.bronze {
    background: rgba(205, 127, 50, 0.2);
}

.gr-monthly-medal {
    font-size: 24px;
}

.gr-monthly-position {
    font-size: 18px;
    font-weight: 800;
    color: #c4b5fd;
}

.gold .gr-monthly-position {
    color: #ffd700;
}
.silver .gr-monthly-position {
    color: #c0c0c0;
}
.bronze .gr-monthly-position {
    color: #cd7f32;
}

.gr-monthly-image {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 20px;
    overflow: hidden;
    background: #030612;
}

.gr-monthly-link {
    display: block;
    width: 100%;
    height: 100%;
}

.gr-monthly-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gr-monthly-card:hover .gr-monthly-image img {
    transform: scale(1.05);
}

.gr-monthly-name {
    font-size: 20px;
    font-weight: 700;
    color: #c4b5fd;
    margin-bottom: 12px;
}

.gr-monthly-metrics {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.gr-monthly-growth {
    font-size: 13px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.gr-monthly-growth.positive {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.gr-monthly-players {
    font-size: 13px;
    color: #9ca3af;
}

.gr-monthly-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 20px;
    overflow: hidden;
}

.gr-monthly-progress {
    height: 100%;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.gr-monthly-play {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #ffffff;
    text-decoration: none;
    padding: 8px 28px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gr-monthly-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

@media (max-width: 1024px) {
    .gr-monthly-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .gr-monthly-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .gr-monthly-top {
        padding: 50px 0;
    }
    
    .gr-monthly-container {
        padding: 0 20px;
    }
    
    .gr-monthly-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .gr-monthly-stats {
        gap: 15px;
    }
    
    .gr-monthly-stat-item {
        padding: 15px 25px;
        min-width: 120px;
    }
    
    .gr-monthly-stat-number {
        font-size: 26px;
    }
    
    .gr-monthly-image {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 550px) {
    .gr-monthly-title {
        font-size: 28px;
    }
    
    .gr-monthly-subtitle {
        font-size: 14px;
    }
    
    .gr-monthly-stats {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .gr-monthly-stat-item {
        width: 100%;
        max-width: 220px;
    }
    
    .gr-monthly-image {
        width: 130px;
        height: 130px;
    }
    
    .gr-monthly-name {
        font-size: 18px;
    }
}