:root {
    --deep-indigo: #0A0A2A;
    --dark-indigo: #1A1A3A;
    --retro-magenta: #FF00FF;
    --arcade-blue: #00FFFF;
    --bright-yellow: #FFFF00;
    --pure-white: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--deep-indigo);
    color: var(--pure-white);
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
.card-text {
    color: #FFFFFF;
}
.text-white {
    color: var(--pure-white) !important;
}

.text-arcade-blue {
    color: var(--arcade-blue) !important;
}

.text-bright-yellow {
    color: var(--bright-yellow) !important;
}

.bg-deep-indigo {
    background-color: var(--deep-indigo) !important;
}

.bg-dark-indigo {
    background-color: var(--dark-indigo) !important;
}

.btn-magenta {
    background-color: var(--retro-magenta);
    border-color: var(--retro-magenta);
    color: var(--deep-indigo);
    font-weight: 600;
    text-decoration: none;
}

.btn-magenta:hover {
    background-color: #E000E0;
    border-color: #E000E0;
    color: var(--deep-indigo);
}

.border-magenta {
    border-color: var(--retro-magenta) !important;
}

.border-bottom-magenta {
    border-bottom: 1px solid var(--retro-magenta) !important;
}

.border-top-magenta {
    border-top: 1px solid var(--retro-magenta) !important;
}

.logo-img {
    height: 40px;
    width: auto;
}

.site-name {
    font-size: 15px;
    font-weight: 700;
}

 

@media (min-width: 1024px) {
    .site-name {
        font-size: 1.3rem;
    }
}
footer .row{
    justify-content: space-between;
}
.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: var(--arcade-blue) !important;
}

.offcanvas-header {
    background-color: var(--deep-indigo);
}

.offcanvas-body {
    background-color: var(--deep-indigo);
}

.offcanvas .navbar-nav .nav-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

.top-disclaimer {
    font-size: 0.85rem;
    word-break: break-word;
}

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-image: url('photos/media/gaming-cards-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-section h1 {
    font-size: 2.5rem;
}

.hero-section p {
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
    .hero-section p {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-section h1 {
        font-size: 4.5rem;
    }
    .hero-section p {
        font-size: 1.5rem;
    }
}

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

.card {
    border-width: 2px;
}

.game-card {
    cursor: pointer;
    transition: none;
}

.game-card:hover {
    border-color: var(--arcade-blue) !important;
}

.game-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.game-rating i {
    font-size: 1rem;
}

.play-game-btn {
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.game-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: none;
}

.game-modal.show {
    opacity: 1;
    visibility: visible;
}

.game-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-game-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--retro-magenta);
    color: var(--deep-indigo);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1060;
    text-decoration: none;
}

.close-game-modal:hover {
    background: var(--arcade-blue);
    color: var(--deep-indigo);
}

.accordion-item {
    border-width: 2px;
}

.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    text-align: left;
    text-decoration: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--retro-magenta) !important;
    color: var(--deep-indigo) !important;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--retro-magenta);
}

.accordion-body {
    background-color: var(--dark-indigo);
    border-top: 1px solid var(--retro-magenta);
}

.disclaimer-block {
    background-color: var(--dark-indigo);
}

.disclaimer-block .p-4 {
    border-width: 2px;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

.age-18-plus {
    font-size: 50px !important;
    color: #dc3545;
}

.modal-content {
    border-width: 2px;
}

.modal-header {
    border-bottom-width: 2px;
}

@media (max-width: 1100px) {
    .navbar-collapse {
        display: none !important;
    }
 
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.25rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
    .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    .top-disclaimer {
        font-size: 0.75rem;
    }
    .footer-logo {
        max-width: 100px;
    }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.5rem;
    }
 
    .hero-section p {
        font-size: 1.1rem;
    }
}

.game-container {
    width: 100%;
    min-height: 100vh;
    background-color: #1a1a2e;
    padding: 20px;
}

.game-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 10px;
}

.game-header h1 {
    color: #FFD700;
    margin: 0;
    font-size: 24px;
}

.btn-back {
    background-color: #FF006E;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.btn-back:hover {
    background-color: #d10059;
    color: white;
}

.game-frame-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;  
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
}

.game-frame-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

 
@media (max-width: 768px) {
    .game-container {
        padding: 10px;
    }
    
    .game-header h1 {
        font-size: 18px;
    }
    
    .btn-back {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .game-frame-wrapper {
        padding-bottom: 75%;  
    }
}