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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0d47a1 0%, #1a237e 50%, #000051 100%);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.age-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-modal-content {
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    margin: 10% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.age-modal-content h2 {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 2rem;
}

.age-modal-content p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-confirm,
.btn-deny {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: #ffc107;
    color: #1a237e;
    font-weight: bold;
}

.btn-confirm:hover {
    background: #ff8f00;
    transform: translateY(-2px);
}

.btn-deny {
    background: #f44336;
    color: white;
}

.btn-deny:hover {
    background: #d32f2f;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: rgba(13, 71, 161, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 193, 7, 0.3);
}

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    gap: 2px;
}

.menu-toggle span:not(.menu-text) {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.menu-text {
    font-size: 0.8rem;
    margin-top: 5px;
}

.logo img {
    height: 40px;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #ffc107;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #ffc107;
    color: #1a237e;
}

/* Navigation */
.navigation {
    background: #1a237e;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

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

.nav-items {
    display: flex;
    gap: 40px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 10px 0;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-item:hover,
.nav-item.active {
    color: #ffc107;
}

.nav-icon {
    font-size: 1.2rem;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-input {
    padding: 10px 15px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    width: 250px;
    font-size: 0.9rem;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-btn {
    background: #ffc107;
    border: none;
    color: #1a237e;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #ff8f00;
}

.games-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-right: 10px;
}

.menu-icon {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-icon:hover {
    border-color: #ffc107;
    color: #ffc107;
}

/* Hero Section */
.hero {
    height: 90vh;
    position: relative;
    background: linear-gradient(135deg, rgba(13, 72, 161, 0.557), rgba(26, 34, 126, 0.444)), url(/assets/hero.jpg);
    background-size: cover;
    display: flex;
        flex-direction: row;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-phones {
    display: flex;
    gap: 30px;
    flex: 1;
}

.phone-left,
.phone-right {
    height: 350px;
}

.hero-text {
    flex: 1;
    text-align: center;
    padding: 0 40px;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: white;
}

.highlight {
    color: #ffc107;
}

.cta-button {
    background: #ffc107;
    border: none;
    color: #1a237e;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 8px;
    cursor: pointer;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ff8f00;
    transform: translateY(-2px);
}

.welcome-bonus {
    margin: 30px 0;
}

.welcome-bonus h2 {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 5px;
}

.welcome-bonus p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.bonus-terms {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
}

/* Games Section */
.games-section {
    padding: 50px 0;
}

.section-title {
    font-size: 2rem;
    color: #ffc107;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
}

.provider-logo {
    height: 24px;
    opacity: 0.8;
}

.favorite-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    color: #ff4444;
    transform: scale(1.1);
}

.game-image {
    position: relative;
    overflow: hidden;
}

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

.game-actions {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.game-link {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid;
}

.real-game {
    background: transparent;
    color: #ffc107;
    border-color: #ffc107;
}

.real-game:hover {
    background: #ffc107;
    color: #1a237e;
}

.free-game {
    background: transparent;
    color: #4caf50;
    border-color: #4caf50;
}

.free-game:hover {
    background: #4caf50;
    color: white;
}

.info-btn {
    background: transparent;
    border: 1px solid #2196f3;
    color: #2196f3;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 32px;
    font-size: 0.8rem;
}

.info-btn:hover {
    background: #2196f3;
    color: white;
}

.show-more-btn {
    display: block;
    margin: 0 auto;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #ffc107;
    color: #ffc107;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: #ffc107;
    color: #1a237e;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid rgba(255, 193, 7, 0.3);
}

.modal-header h2 {
    color: #ffc107;
    font-size: 1.8rem;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffc107;
}

.registration-form {
    padding: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: normal;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="date"] {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #ffc107;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    color: white;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #ffc107;
    border: none;
    border-radius: 6px;
    color: #1a237e;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ff8f00;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.4);
    margin-top: 80px;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 193, 7, 0.3);
}

/* Provider Logos Section */
.footer-providers {
    margin-bottom: 40px;
}

.provider-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.provider-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 70px;
}

.provider-logo-container:hover {
    background: rgba(255, 193, 7, 0.1);
}

.provider-logo-container img {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.provider-logo-container:hover img {
    opacity: 1;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: rgba(255, 193, 7, 0.2);
    margin: 40px 0;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: bold;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #ffc107;
}

/* Company Info Section */
.company-info {
    grid-column: span 2;
}

.company-info p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

/* Social Icons Container */
.social-icons-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.social-icons-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 12px;
    align-items: center;
}

.social-icons-list li {
    margin: 0;
}

.social-icons-list a,
.social-icons-list div {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icons-list a:hover {
    transform: scale(1.1);
}

/* Footer Bottom Section */
.footer-bottom {
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    padding-top: 30px;
}

.security-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.security-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.security-logo-container img {
    max-height: 35px;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.security-logo-container:hover img {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

@media (max-width: 968px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .nav-items {
        display: none;
    }
    
    .navigation .container {
        justify-content: center;
    }
    
    .provider-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .security-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-phones {
        order: 2;
        margin-top: 30px;
    }
    
    .hero-text {
        order: 1;
        padding: 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .phone-left,
    .phone-right {
        height: 250px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .company-info {
        grid-column: span 2;
    }
    
    .provider-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .security-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .phone-left,
    .phone-right {
        height: 200px;
    }
    
    .hero-phones {
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .company-info {
        grid-column: span 1;
    }
    
    .provider-logos-grid,
    .security-logos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .social-icons-container {
        justify-content: center;
        margin-top: 20px;
    }
}

.hero-text {
    flex: 1;
    text-align: center;
    padding: 0 40px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: #ffc107;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

.cta-button {
  margin-top: 20px;
    background: linear-gradient(45deg, #ffc107, #ff8f00);
    border: none;
    color: #1a237e;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 20px 30px;
    border-radius: 20px;
    cursor: pointer;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

.welcome-bonus {
    margin: 30px 0;
}

.welcome-bonus h2 {
    font-size: 2.5rem;
    color: #ffc107;
    margin-bottom: 5px;
}

.welcome-bonus p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.bonus-terms {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

/* Games Section */
.games-section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    color: #ffc107;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.game-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: #ffc107;
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.3);
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
}

.provider-logo {
    height: 30px;
}

.favorite-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    color: #ff4444;
    transform: scale(1.2);
}

.game-image {
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-actions {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.game-link {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.real-game {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.real-game:hover {
    background: #ffc107;
    color: #1a237e;
}

.free-game {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.free-game:hover {
    background: #4caf50;
    color: white;
}

.info-btn {
    background: rgba(33, 150, 243, 0.2);
    border: 1px solid #2196f3;
    color: #2196f3;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
}

.info-btn:hover {
    background: #2196f3;
    color: white;
}

.show-more-btn {
    display: block;
    margin: 0 auto;
    padding: 15px 40px;
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid #ffc107;
    color: #ffc107;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: #ffc107;
    color: #1a237e;
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 2px solid #ffc107;
}

.modal-header h2 {
    color: #ffc107;
    font-size: 1.8rem;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffc107;
}

.registration-form {
    padding: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffc107;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="date"] {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    color: white;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #ffc107, #ff8f00);
    border: none;
    border-radius: 8px;
    color: #1a237e;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.6);
    margin-top: 80px;
    padding: 60px 0 20px;
    border-top: 2px solid #ffc107;
}

/* Provider Logos Section */
.footer-providers {
    margin-bottom: 40px;
}

.provider-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.provider-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    min-height: 80px;
}

.provider-logo-container:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateY(-3px);
}

.provider-logo-container img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.provider-logo-container:hover img {
    opacity: 1;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.3), transparent);
    margin: 40px 0;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-section ul li a:hover {
    color: #ffc107;
    padding-left: 5px;
}

/* Company Info Section */
.company-info {
    grid-column: span 2;
}

.company-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Social Icons Container */
.social-icons-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.social-icons-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
    align-items: center;
}

.social-icons-list li {
    margin: 0;
}

.social-icons-list a,
.social-icons-list div {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icons-list a:hover {
    transform: scale(1.2);
}

.social-icons-list img {
    transition: all 0.3s ease;
}

/* Footer Bottom Section */
.footer-bottom {
    border-top: 1px solid rgba(255, 193, 7, 0.3);
    padding-top: 30px;
}

.security-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.security-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.security-logo-container img {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.security-logo-container:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.security-logo-container a {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .provider-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .security-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .company-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .provider-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .security-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .company-info {
        grid-column: span 1;
    }
    
    .social-icons-container {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
}

@media (max-width: 480px) {
    .provider-logos-grid,
    .security-logos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .provider-logo-container,
    .security-logo-container {
        min-height: 60px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .company-info p {
        font-size: 0.85rem;
    }
    
    .social-icons-list {
        gap: 10px;
    }
    
    .social-icons-list img {
        width: 30px;
        height: 30px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-phones {
        order: 2;
        margin-top: 40px;
    }
    
    .hero-text {
        order: 1;
        padding: 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .phone-left,
    .phone-right {
        height: 250px;
    }
    
    .nav-items {
        display: none;
    }
    
    .navigation .container {
        justify-content: center;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .company-info {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .provider-logos {
        gap: 20px;
    }
    
    .payment-security {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .phone-left,
    .phone-right {
        height: 200px;
    }
    
    .hero-phones {
        gap: 20px;
    }
}


        .legal-page {
            max-width: 1300px;
            margin: 0 auto;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            margin-top: 30px;
            margin-bottom: 30px;
        }
        
        .legal-page h1 {
            color: #ffc107;
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            border-bottom: 2px solid #ffc107;
            padding-bottom: 20px;
        }
        
        .legal-page h2 {
            color: #ffc107;
            font-size: 1.8rem;
            margin: 30px 0 20px 0;
            border-left: 4px solid #ffc107;
            padding-left: 15px;
        }
        
        .legal-page h3 {
            color: #ffc107;
            font-size: 1.4rem;
            margin: 25px 0 15px 0;
        }
        
        .legal-page p {
            line-height: 1.6;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .legal-page ul, .legal-page ol {
            margin: 15px 0;
            padding-left: 30px;
        }
        
        .legal-page li {
            margin-bottom: 8px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }
        
        .legal-page .important {
            background: rgba(255, 193, 7, 0.1);
            border: 1px solid #ffc107;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }
        
        .legal-page .important h3 {
            margin-top: 0;
            color: #ffc107;
        }
        
        .contact-info {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            padding: 20px;
            margin: 30px 0;
        }
        
        .last-updated {
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 193, 7, 0.3);
        }