
:root {
    --primary-purple: #1a2b47;
    --dark-purple: #192c4b;
    --light-purple: #8a2be2;
    --primary-blue: #0066cc;
    --light-blue: #e6f3ff;
    --teal: #49c5b6;
    --yellow: #ffd966;
}

body {
    font-family: Arial, sans-serif;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: auto;
    /* overflow-x: hidden; */
    color: #000;
}

/* General Header Styling */
.gaming-header {
    background-color: var(--primary-purple);
    color: white;
    padding: 10px 0;
    width: 100%;
}

.gaming-nav {    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
}

.nav-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px 0;
}

/* Mobile Menu Button */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Navigation Links */
.nav-link {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link.active {
    background-color: var(--dark-purple);
    border-radius: 25px;
}

.nav-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
}

.brand-logo {
    display: flex;
    align-items: center;
  }
  
  .brand-logo img {
    max-height: 40px;
    width: auto;
    transition: transform 0.3s ease;
  }
  
  .brand-logo img:hover {
    transform: scale(1.05);
  }
/* Buttons */
.action-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
}

.btn-games {
    background-color: transparent;
    color: white;
    border-radius: 25px;
    padding: 5px 15px;
    font-weight: bold;
    border: 1px solid white;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-money:hover, .btn-games:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.search-icon, .user-icon {
    color: white;
    font-size: 1rem;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-icon:hover, .user-icon:hover {
    transform: scale(1.2);
}

/* Responsive Mobile Menu */
@media (max-width: 991.98px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: var(--dark-purple);
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        padding: 10px 0;
        text-align: center;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .gaming-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .action-buttons {
        justify-content: center;
        width: 100%;
    }

    .nav-links {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        padding: 10px;
    }
}

@media (max-width: 575.98px) {
    .logo-img {
        max-height: 30px;
    }

    .btn-games {
        padding: 6px 12px;
        font-size: 0.875rem;
    }

    .login-trigger {
        font-size: 0.875rem;
    }
}




.game-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.game-card {
    width: 100%;
    max-width: 460px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.game-image {
    /* width: 100%;
    height: 200px;
    object-fit: cover; */
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 80%;
    border-color: transparent;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* .game-title {
    margin: 10px 0;
    padding: 0 10px;
    font-weight: bold;
} */

.game-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-bottom: 15px;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
}
.game-cardbg1{
    aspect-ratio: 1.333;
    background-position: 50%;
    background-size: cover;
    border-radius: 8px;
    padding: .75rem;
    position: relative;
    overflow: hidden;
}
.game-cardbg2{
    aspect-ratio: 1.333;
    background-position: 50%;
    background-size: cover;
    border-radius: 8px;
    padding: .75rem;
    position: relative;
    overflow: hidden;
}
.game-cardbg3{
    aspect-ratio: 1.333;
    background-position: 50%;
    background-size: cover;
    border-radius: 8px;
    padding: .75rem;
    position: relative;
    overflow: hidden;
}

.btn-play, .btn-discover {
    padding: 8px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-play {
    background-color: #000;
    color: white;
    border: none;
}

.btn-discover {
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
}

.btn-play:hover, .btn-discover:hover {
    transform: scale(1.05);
}

.login-container {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.login-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lock-icon {
    background-color: #f0f0f0;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.crown {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: gold;
    font-size: 0.8rem;
}

.lock {
    color: #333;
    font-size: 1.2rem;
}

.login-text {
    font-weight: bold;
}

.login-buttons {
    display: flex;
    gap: 10px;
}

.btn-login {
    background-color: #1a2b47;
    color: white;
    border: none;
    border-radius: 8px;
    /* padding: 8px 25px; */
    padding: 5px 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-register {
    background-color: transparent;
    color: #1a2b47;
    border: 1px solid #1a2b47;
    border-radius: 8px;
    /* padding: 8px 25px; */
    padding: 5px 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-login:hover, .btn-register:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 255, 0.2);
    color: #fff;
    background: #1a2b47;
}

/* Login Drawer Styles */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.drawer-overlay.active {
    visibility: visible;
    opacity: 1;
}

.login-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    max-width: 90%;
    height: 100%;
    background-color: white;
    z-index: 1001;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.login-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #333;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.form-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-submit {
    background-color: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.form-submit:hover {
    background-color: var(--dark-purple);
}

.login-options {
    margin-top: 20px;
    text-align: center;
}

.login-options a {
    color: var(--primary-purple);
    text-decoration: none;
}

.login-options a:hover {
    text-decoration: underline;
}

.error-message {
    background-color: #f8d7da;
    color: #842029;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
    display: none;
}

.error-message.active {
    display: block;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-in {
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive adjustments */
/* Large devices (desktops) */
@media (max-width: 1199.98px) {
    .nav-links {
        gap: 15px;
    }
}

/* Medium devices (tablets) */
@media (max-width: 991.98px) {
    .gaming-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links {
        width: 100%;
        overflow-x: auto;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .action-buttons {
        width: 100%;
        justify-content: flex-end;
        padding: 10px 0;
    }
    
    .game-container {
        justify-content: center;
    }
    
    .game-card {
        max-width: 300px;
    }
}

/* Small devices (landscape phones) */
@media (max-width: 767.98px) {
    .submenu-links {
        overflow-x: auto;
        width: 100%;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .service-messages {
        display: none;
    }
    
    .action-buttons {
        justify-content: center;
    }
    
    .login-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .login-left {
        width: 100%;
        justify-content: center;
    }
    
    .login-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .btn-login {
        width: 45%;
        text-align: center;
    }

    .login-drawer {
        width: 300px;
    }
}

/* Extra small devices (phones) */
@media (max-width: 575.98px) {
    .dropdown-toggle {
        padding-left: 10px;
    }
    
    .gaming-nav {
        padding: 0 10px;
    }
    
    .action-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .search-icon, .user-icon {
        margin: 5px;
    }
    
    .nav-link {
        padding: 5px;
        font-size: 0.9rem;
    }
    
    .submenu {
        padding: 5px 10px;
    }
    
    .submenu-link {
        font-size: 0.8rem;
    }
    
    .btn-money, .btn-games {
        padding: 5px 10px;
        font-size: 0.9rem;
    }
    
    .game-card {
        max-width: 100%;
    }
    
   
    
    .btn-play, .btn-discover {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    .login-container {
        margin: 10px;
        padding: 10px;
    }
    
    .login-text {
        font-size: 0.9rem;
    }
    
    .btn-login, .btn-register {
        padding: 6px 15px;
        font-size: 0.9rem;
    }

    .login-drawer {
        width: 85%;
    }
}

/* Mobile menu toggle for very small screens */
@media (max-width: 480px) {
    .mobile-menu {
        display: block;
        margin: 10px 0;
    }
    
    .brand-logo {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-links.collapsed {
        display: none;
    }
    
    .submenu-links {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .submenu-link {
        width: 45%;
    }
}


 /* Game Slider Container */


.section-title{
    font-size: 1.5rem;
    /* font-weight: 700; */
    /* line-height: 1.5rem; */
    margin-top: 2rem;
    margin-bottom: 1.25rem;

    font-weight: 700;
    line-height: 1.5rem;
}
/* Game Card Section */
.game-container2 {
    padding-bottom: 20px;
}
.games-section{
    padding : 20px;
}
.game-inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px; /* Compensate for padding in game-item */
}

.game-item {
    margin-bottom: 20px;
    padding: 0 10px;
}

.game-card2 {
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    width: 100%; /* This is key - use 100% instead of fixed width */
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    height: 100%; /* Use percentage for height */
    display: flex;
    flex-direction: column;
}

.game-card2:hover {
    transform: scale(1.05);
}

.game-card2 img {
    width: 100%;
    /* aspect-ratio: 1 / 1;  */
    object-fit: cover;
    flex-grow: 1;
}

.game-title {
    padding: 10px;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

/* Hover Effect */
.game-overlay {
    position: absolute;
   
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 10px;
    color: white;
}

.game-card2:hover .game-overlay {
    opacity: 1;
}

.game-overlay button {
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    margin: 2px 0;
}

.btn-play {
    background: #ffcc00;
    color: black;
    font-weight: bold;
}

.btn-free, .btn-discover {
    background: white;
    border: 1px solid #ffcc00;
    color: #ffcc00;
}

.btn-play:hover {
    background: #e6b800;
}

.btn-free:hover, .btn-discover:hover {
    background: #ffcc00;
    color: white;
}

/* Media Queries - only adjust font sizes and spacing */
@media (max-width: 768px) {
    .game-title {
        font-size: 13px;
    }
    .game-overlay button {
        padding: 6px 12px;
        font-size: 13px;
    }
    .game-overlay {
        height: 100%;
    }
}

@media (max-width: 480px) {
    .game-title {
        font-size: 12px;
    }
    .game-overlay button {
        padding: 5px 10px;
        font-size: 12px;
    }
}

.notification-container {
    width: 100%;
    /* max-width: 1200px; */
    background-color: #263b59;
    border-radius: 16px;
    display: flex;
    align-items: center;
    /* padding: 16px 24px; */
    padding: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.icon-container {
    background-color: #5e2a8e;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-right: 16px;
    flex-shrink: 0;
}

.card-icon {
    width: 40px;
    height: 40px;
}

.notification-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background-color: #ff4d4d;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

.content {
    flex: 1;
}

.title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.description {
    font-size: 14px;
    opacity: 0.9;
}

.action-container {
    display: flex;
    align-items: center;
    margin-left: 16px;
}

.bell-icon-container {
    width: 48px;
    height: 48px;
    background-color: #5e2a8e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
}

.bell-icon {
    width: 24px;
    height: 24px;
}

.subscribe-button {
    background-color: #5e2a8e;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .notification-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .content {
        margin: 16px 0;
    }

    .action-container {
        width: 100%;
        margin-left: 0;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 16px;
    }

    .description {
        font-size: 12px;
    }

    .subscribe-button {
        padding: 10px 16px;
        font-size: 12px;
    }
}

.Ominaisuudet-container {
    width: 100%;
    background-color: #304269;
    border-radius: 8px;
    padding: 40px 20px;
    color: white;
    text-align: center;
}

.title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 40px;
}

.Ominaisuudet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-container {
    width: 100px;
    height: 100px;
    background-color: #7e3dcd;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffd700;
}

.feature-description {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 10px;
}

.explore-button {
    background-color: white;
    color: #333;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.explore-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Icons */
.icon {
    width: 50px;
    height: 50px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .Ominaisuudet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .Ominaisuudet-grid {
        grid-template-columns: 1fr;
    }
    
    .title {
        font-size: 24px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .explore-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* footer */

/* Footer Main Styles */
.footer-main {
    background-color: #0f1923;
    color: #e0e0e0;
    padding: 0;
    position: relative;
  }
  
  .footer-container {
    padding: 40px 20px 20px;
  }
  
  /* Footer Top Section */
  .footer-top {
    margin-bottom: 30px;
  }
  
  /* Logo Styles */
  .footer-logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .footer-logo-link:hover {
    transform: translateY(-3px);
  }
  
  .logo {
    max-width: 150px;
    height: auto;
  }
  
  /* Age Restriction Badge */
  .age-restriction-badge {
    background-color: #e74c3c;
    color: white;
    font-weight: bold;
    font-size: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .responsible-gaming-text {
    font-size: 14px;
    color: #e0e0e0;
  }
  
  /* Section Titles */
  .footer-title {
    color: #4b9cd3;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #4b9cd3, #3a7ca5);
    border-radius: 3px;
  }
  
  /* Footer Links */
  .footer-link {
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding-left: 2px;
  }
  
  .footer-link:hover {
    color: #4b9cd3;
    transform: translateX(5px);
  }
  
  .footer-icon {
    width: 20px;
    margin-right: 8px;
    color: #4b9cd3;
  }
  
  .footer-text {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-top: 10px;
  }
  
  /* Trust Badges Section */
  .trust-badges-section {
    background-color: #121f2a;
    padding: 25px 15px;
    border-radius: 8px;
    margin-bottom: 30px;
  }
  
  .trust-badges-title {
    font-size: 1.1rem;
    color: #4b9cd3;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .trust-badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
  }
  
  .trust-badge-link {
    transition: transform 0.3s ease;
  }
  
  .trust-badge-link:hover {
    transform: translateY(-3px);
  }
  
  .trust-badge {
    height: 30px;
    width: auto;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
  }
  
  .trust-badge:hover {
    filter: grayscale(0%);
  }
  
  /* Disclaimer Section */
  .disclaimer-section {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
  }
  
  .disclaimer-title {
    font-size: 1.1rem;
    color: #e74c3c;
    margin-bottom: 15px;
  }
  
  .disclaimer-text {
    font-size: 0.85rem;
    color: #b0b0b0;
    line-height: 1.6;
  }
  
  /* Footer Bottom / Copyright */
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .copyright-text {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .footer-section {
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 767px) {
    .footer-container {
      padding: 30px 15px 15px;
    }
    
    .trust-badges-container {
      gap: 15px;
    }
    
    .trust-badge {
      height: 30px;
    }
    
    .logo {
      max-width: 130px;
    }
    
    .footer-title {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 576px) {
    .footer-container {
      padding: 25px 10px 10px;
    }
    
    .trust-badges-container {
      gap: 10px;
    }
    
    .trust-badge {
      height: 30px;
    }
    
    .disclaimer-section {
      padding: 15px;
    }
    
    .disclaimer-text {
      font-size: 0.8rem;
    }
  }


.info-title {
    font-weight: bold;
    color: blue;
}
.feedback-right {
    background: #f1f7fd;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.feedback-right img {
    width: 50px;
    height: 50px;
}

.button-container {
    display: flex;
    gap: 10px;
    /* width: 100%; */
    justify-content: center;
    flex-wrap: wrap;
}

/* Default: Buttons side by side */
.btn-login2, .btn-register2 {
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    flex: 1; /* Make buttons equal width */
    min-width: 120px;
}

/* Login Button */
.btn-login2 {
    background: #1a2b47;
    color: #fff;
    border: none;
}

.btn-login2:hover {
    background: darkblue;
    color: #fff;
}

/* Register Button */
.btn-register2 {
    border: 1px solid #1a2b47;
    color: #1a2b47;
    background: #fff;
}

.btn-register2:hover {
    background: darkblue;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .button-container {
        flex-direction: column;
        gap: 5px;
    }

    .btn-login2, .btn-register2 {
        width: 100%; /* Stack buttons in one column */
    }
}


.terms-container {
   
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.safe-gaming-banner {
    /* background: linear-gradient(90deg, var(--light-blue), var(--teal), var(--primary-blue)); */
   
    height: 20rem;
    position: relative;
    overflow: hidden;
    /* border-radius: 0 0 50px 50px; */
    object-fit: cover;
    background-size: 100%;
    background-repeat: no-repeat;
}
.safe-gaming-img{
    background-image:url('../images/safe-gamebg.jpg');
    pointer-events: none;
    touch-action: pan-y;
    background-position: 100%;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}
.safe-gaming-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-top: 2rem;
}

.safe-gaming-card {
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.safe-gaming-card:hover {
    transform: translateY(-5px);
}

.safe-gaming-card h3 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.safe-gaming-card p {
    color: #555;
    line-height: 1.6;
}

.person-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.person-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.content-container {
    /* max-width: 900px; */
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}
.heading-xs {
    font-size: 1rem;
    line-height: 1.25rem;
}
.header__subtitle {
    max-width: 30rem;
    font-family: proxima-nova, Helvetica, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.25em;
}
li {
    margin-bottom: .5em;
    margin-left: 0;
}
@media (max-width: 768px) {
    .safe-gaming-banner {
        height: 200px;
    }
    
    .person-image {
        display: none;
    }
    
    .safe-gaming-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .safe-gaming-card {
        margin-bottom: 1rem;
    }
}





      
.banner-section {
    position: relative;
    background: linear-gradient(135deg, #1a2a6c, #1a2a6c 25%, #2a4858 75%, #2a4858);
    height: 280px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}

.banner-objects {
    position: relative;
    /* height: 100%; */
    z-index: 1;
}

.age-limit-bubble {
    /* position: absolute;
    left: 15%;
    bottom: 80px; */
    background-color: white;
    border-radius: 20px;
    padding: 10px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2;
}

.age-limit-bubble::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: white transparent transparent;
}

.age-limit-bubble h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.content-section {
    padding: 40px 0;
}

/* .section-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #222;
} */



.info-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.id-card-container {
    position: relative;
    margin: 40px 0;
}

.id-card {
    position: relative;
    width: 300px;
    height: 180px;
    background-color: #00cba9;
    border-radius: 10px;
    padding: 20px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    margin-bottom: 20px;
    overflow: hidden;
}

.id-card:nth-child(2) {
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: -1;
}

.id-card-heading {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.id-card-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

.id-card-photo {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 80px;
    height: 100px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 5px;
}

.section-divider {
    margin: 30px 0;
    border-top: 1px solid #ddd;
}

.link-highlight {
    color: #0066cc;
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 768px) {
    .banner-section {
        height: 200px;
    }

    .blue-ball, .teal-ball {
        width: 100px;
        height: 100px;
    }

    .soccer-ball {
        width: 60px;
        height: 60px;
    }

    .age-limit-bubble {
        left: 10%;
        bottom: 60px;
    }

    .id-card {
        width: 260px;
        height: 160px;
    }

    .id-card:nth-child(2) {
        left: 20px;
    }
}

@media (max-width: 576px) {
    .id-card:nth-child(2) {
        position: relative;
        top: 0;
        left: 0;
        z-index: 0;
        margin-top: -40px;
    }
}

.principle-item {
    margin-bottom: 1.25rem;
}
.principle-number {
    font-weight: bold;
}
.indent-item {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}
.sub-letter {
    font-weight: bold;
}
.intro-text {
    margin-bottom: 1.5rem;
}
.footnote {
    font-style: italic;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
}


/* model */


.age-verification-modal .modal-content {
    background-color: rgb(14, 13, 13);
    color: #fff;
    border: none;
    border-radius: 0;
    text-align: center;
    padding: 30px;
    box-shadow: none;
}

.age-restriction-icon {
    background-color: #ff0000;
    color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 25px;
}

.modal-title {
    font-size: 20px;
    /* font-weight: bold; */
    margin-bottom: 20px;
    line-height: 1.3;
}

.verification-text {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-yes {
    background-color: #00a651;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 4px;
}

.btn-no {
    background-color: #ff0000;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 4px;
}

.btn-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}
