/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-dark-blue: #0f1736;
    --primary-blue: #1a2151;
    --primary-purple: #4e2a84;
    --primary-pink: #e83e8c;
    
    /* Gradient Colors */
    --gradient-top: #1a2151;
    --gradient-middle: #2a2a5a;
    --gradient-bottom: #4e2a84;
    
    /* Accent Colors */
    --accent-pink: #fb6f92;
    --accent-cyan: #00d4ff;
    --accent-yellow: #ffd166;
    
    /* Neutral Colors */
    --dark-blue: #0f1736;
    --darker-blue: #0a0f24;
    --text-light: #ffffff;
    --text-gray: #a3a8c3;
    
    /* Button Colors */
    --button-purple: #6930c3;
    --button-hover: #5926a3;
    
    /* Other Variables */
    --border-radius: 12px;
    --card-radius: 16px;
    --button-radius: 30px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

/* Header */
.header {
    background-color: var(--primary-dark-blue);
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    margin-right: 30px;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    margin: 0;
}

.main-nav {
    display: flex;
    margin-right: auto;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 5px 0;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-list a:hover {
    color: var(--accent-pink);
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: var(--button-radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--button-purple);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(105, 48, 195, 0.4);
}

.btn-primary:hover {
    background-color: var(--button-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(105, 48, 195, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle .line {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--gradient-top) 0%, var(--gradient-middle) 50%, var(--gradient-bottom) 100%);
    padding: 50px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-heading {
    margin-bottom: 30px;
}

.hero-subtext {
    font-size: 1.2rem;
    color: var(--accent-pink);
    margin-bottom: 20px;
}

.spin-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 10px;
}

.slot-machine-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    z-index: 2;
}

/* Slot Machine */
.slot-machine {
    background-color: var(--primary-blue);
    border-radius: var(--card-radius);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin: 0 auto 20px;
    max-width: 450px;
    position: relative;
    box-shadow: var(--box-shadow);
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    background-color: var(--darker-blue);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.slot-symbol {
    aspect-ratio: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slot-symbol img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.slot-symbol.active {
    box-shadow: 0 0 15px var(--accent-cyan);
    transform: scale(1.05);
    z-index: 2;
}

.slot-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
}

.prize-amount {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.prize-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.prize-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-yellow);
}

.btn-spin {
    background: linear-gradient(135deg, var(--button-purple) 0%, var(--primary-purple) 100%);
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 12px 0;
    width: 100%;
    border-radius: var(--button-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(105, 48, 195, 0.4);
}

.btn-spin:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(105, 48, 195, 0.6);
}

.bet-controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 10px 20px;
}

.spin-count, .bet-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spin-label, .bet-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.spin-value, .bet-value {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Mascots */
.mascot {
    position: absolute;
    bottom: -30px;
    width: 200px;
    z-index: 1;
}

.fox-mascot {
    left: 5%;
}

.bear-mascot {
    right: 5%;
}

.mascot-img {
    width: 100%;
    height: auto;
}

/* Popular Games Section */
.popular-games {
    background-color: var(--primary-dark-blue);
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--text-light);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-pink), var(--button-purple));
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.game-card {
    border-radius: var(--card-radius);
    overflow: hidden;
    background-color: var(--darker-blue);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.game-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-img {
    transform: scale(1.05);
}

.game-info {
    padding: 15px;
    text-align: center;
}

.game-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-light);
    text-transform: uppercase;
}

.game-provider {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.benefits .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.benefits-content {
    max-width: 500px;
}

.benefits-text {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.benefits-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.icon-circle:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.icon-img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

.fox-diamond-mascot {
    position: absolute;
    bottom: -30px;
    right: 5%;
    width: 200px;
    z-index: 1;
}

/* Bonuses Section */
.bonuses {
    background-color: var(--primary-dark-blue);
    padding: 80px 0;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.bonus-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--gradient-middle) 100%);
    border-radius: var(--card-radius);
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.bonus-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-pink);
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 0 0 0 var(--border-radius);
    text-transform: uppercase;
}

.bonus-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.bonus-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.bonuses-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.bonuses-note {
    max-width: 60%;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Win Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 15, 36, 0.9);
    z-index: 1000;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(135deg, #1c1c42 0%, #2a1a52 100%);
    margin: 5% auto;
    max-width: 500px;
    padding: 30px;
    border-radius: var(--card-radius);
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.5s ease forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.close-modal:hover {
    color: var(--accent-pink);
}

.jackpot-win-modal .modal-content {
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a40 0%, #331c5a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.jackpot-win-modal .modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg-pattern.png');
    opacity: 0.1;
    z-index: 0;
}

.jackpot-win-title {
    position: relative;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--accent-yellow);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 209, 102, 0.5);
    z-index: 2;
}

.jackpot-win-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-pink), var(--accent-cyan));
}

.spin-info {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.info-column {
    text-align: center;
    position: relative;
    flex: 1;
}

.info-column:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.info-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
}

.jackpot-amount {
    color: var(--accent-yellow);
    text-shadow: 0 0 10px rgba(255, 209, 102, 0.5);
}

.jackpot-form {
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.form-control::placeholder {
    color: var(--text-gray);
}

.form-terms {
    margin-bottom: 30px;
    text-align: left;
}

.terms-label {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.terms-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: var(--transition);
}

.terms-label:hover .checkmark {
    background-color: rgba(255, 255, 255, 0.2);
}

.terms-checkbox:checked ~ .checkmark {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.terms-checkbox:checked ~ .checkmark:after {
    display: block;
}

.terms-label .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.terms-link {
    color: var(--accent-cyan);
    text-decoration: underline;
    transition: var(--transition);
}

.terms-link:hover {
    color: var(--accent-pink);
}

.btn-claim {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--button-purple) 100%);
    color: var(--text-light);
    border: none;
    border-radius: var(--button-radius);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(251, 111, 146, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-claim:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(251, 111, 146, 0.6);
}

.btn-claim::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: btnShimmer 3s infinite linear;
}

@keyframes btnShimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Footer */
.footer {
    background-color: var(--primary-dark-blue);
    position: relative;
    z-index: 10;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding: 50px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    max-width: 300px;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-heading {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--accent-pink);
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-list a {
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-list a:hover {
    color: var(--accent-pink);
    transform: translateX(5px);
}

.responsible-gaming {
    background-color: #13112d;
    padding: 30px 0;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 100%;
}

.age-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--text-light);
    color: var(--primary-dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.responsible-text {
    flex: 1;
}

.responsible-title {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.responsible-message {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.copyright {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent-pink);
    transform: translateY(-3px);
}

/* Animations */
@keyframes spin {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-300%);
    }
}

@keyframes stopSpinning {
    0% {
        transform: translateY(-300%);
    }
    10% {
        transform: translateY(-290%);
    }
    15% {
        transform: translateY(-310%);
    }
    20% {
        transform: translateY(-300%);
    }
    100% {
        transform: translateY(-300%);
    }
}

@keyframes win {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px var(--accent-cyan);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 25px var(--accent-cyan), 0 0 40px var(--accent-yellow);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .mascot {
        width: 150px;
    }
    
    .benefits .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .benefits-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .header .container {
        flex-wrap: wrap;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
        display: none;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bonuses-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .bonuses-note {
        max-width: 100%;
        text-align: center;
    }
    
    .fox-mascot, .bear-mascot {
        display: none;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .age-restriction {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .modal-content {
        width: 90%;
        padding: 20px;
    }
    
    .jackpot-win-title {
        font-size: 1.5rem;
    }
    
    .spin-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .info-column:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.7rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .header-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .form-terms {
        text-align: center;
    }
}

@media (max-width: 375px) {
    .jackpot-win-title {
        font-size: 1.7rem;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-control {
        height: 45px;
    }
    
    .spin-info {
        padding: 10px;
        flex-wrap: wrap;
    }
    
    .info-column {
        width: 100%;
        padding: 10px 0;
    }
    
    .terms-checkbox {
        width: 18px;
        height: 18px;
    }
} 