/* Base Styles */
:root {
    --primary-color: #051440;
    --secondary-color: #4361ee;
    --accent-color: #7bd3ea;
    --text-color: #333;
    --text-light: #fff;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --border-radius: 6px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f7fa;
}

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

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--border-radius);
    background-color: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
    color: var(--primary-color);
}

.btn-login {
    background-color: transparent;
    border: 2px solid var(--text-light);
}

.btn-register {
    background-color: #7030a0;
}

/* Header Styles */
.site-header {
    background-color: var(--primary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: var(--text-light);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: var(--border-radius);
}

.main-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

/* Section Styles */
section {
    padding: 60px 0;
}

section:nth-child(even) {
    background-color: #fff;
}

section:nth-child(odd) {
    background-color: #f5f7fa;
}

.hero-section {
    background-image: linear-gradient(120deg, #051440 0%, #3a56e4 100%);
    color: var(--text-light);
    padding: 80px 0;
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}

.badge-welcome {
    background-color: #7030a0;
}

.badge-crypto {
    background-color: #ff9500;
}

.badge-freespins {
    background-color: #2ecc71;
}

.badge-cashback {
    background-color: #e74c3c;
}

.badge-reload {
    background-color: #3498db;
}

.badge-popular {
    background-color: #f39c12;
}

.badge-exclusive {
    background-color: #9b59b6;
}

/* Footer Styles */
.site-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0;
    font-size: 0.9rem;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-info a {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 5px;
}

.footer-info a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-buttons {
        width: 100%;
        justify-content: center;
    }
}



.welcome-bonus-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.welcome-bonus-content {
    flex: 1;
}

.welcome-bonus-image {
    flex: 1;
    text-align: center;
}

.welcome-bonus-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subheading {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0.9;
}

.welcome-bonus-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.bonus-step {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.bonus-step:hover {
    transform: translateX(5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.step-heading {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.hero-cta {
    margin-top: 30px;
}

.hero-cta .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #7030a0 0%, #9b59b6 100%);
}

.other-bonuses {
    margin-top: 50px;
}

.other-bonuses h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.bonus-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.15);
}

.bonus-card .badge {
    position: absolute;
    top: 10px;
    right: 10px;
}

.bonus-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.bonus-description {
    margin-bottom: 15px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.bonus-minimum {
    font-size: 0.85rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .welcome-bonus-container {
        flex-direction: column;
    }
    
    .welcome-bonus-image {
        order: -1;
    }
    
    .hero-heading {
        font-size: 2rem;
    }
    
    .bonus-cards {
        grid-template-columns: 1fr;
    }
}


.games-portfolio {
    text-align: center;
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 15px;
}

.section-subheading {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

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

.game-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

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

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

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-button {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.play-button:before {
    content: "▶";
    margin-left: 5px;
}

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

.game-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.game-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
}

.game-provider {
    opacity: 0.8;
}

.game-rtp {
    font-weight: 600;
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
}


.review-section {
    background-color: white;
}

.review-container {
    max-width: 900px;
    margin: 0 auto;
}

.review-header {
    text-align: center;
    margin-bottom: 40px;
}

.review-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.review-text {
    line-height: 1.8;
}

.review-text p {
    margin-bottom: 20px;
}

.review-text h3 {
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.review-sidebar {
    position: sticky;
    top: 100px;
}

.author-card {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    display: block;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: center;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.author-experience {
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: left;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.rating-card {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.rating-title {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.rating-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.rating-item:last-child {
    margin-bottom: 0;
}

.rating-category {
    font-weight: 500;
}

.rating-stars {
    color: gold;
}

.overall-rating {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-weight: 600;
}

@media (max-width: 768px) {
    .review-content {
        grid-template-columns: 1fr;
    }
    
    .review-sidebar {
        position: static;
    }
}

.faq-section {
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f5f7fa;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.support-section {
    background-color: white;
    padding: 70px 0;
}

.support-container {
    max-width: 900px;
    margin: 0 auto;
}

.support-header {
    text-align: center;
    margin-bottom: 50px;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.support-card {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.support-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.support-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.support-availability {
    display: inline-block;
    background-color: var(--success-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.support-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.support-button:hover {
    background-color: var(--primary-color);
    color: white;
}

.support-note {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: var(--border-radius);
    font-style: italic;
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}


.license-section {
    background-color: white;
}

.license-container {
    max-width: 900px;
    margin: 0 auto;
}

.license-header {
    text-align: center;
    margin-bottom: 40px;
}

.license-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.license-info, .trust-info {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
}

.license-title, .trust-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.license-details, .trust-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    margin-bottom: 10px;
}

.detail-label {
    font-weight: 600;
    width: 140px;
    flex-shrink: 0;
}

.detail-value {
    flex-grow: 1;
}

.license-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.license-badge {
    height: 60px;
    filter: grayscale(0.5);
    transition: filter 0.3s ease;
}

.license-badge:hover {
    filter: grayscale(0);
}

.complaint-process {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.complaint-process h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.complaint-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.complaint-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .license-content {
        grid-template-columns: 1fr;
    }
}

.support-section {
    background-color: white;
    padding: 70px 0;
}

.support-container {
    max-width: 900px;
    margin: 0 auto;
}

.support-header {
    text-align: center;
    margin-bottom: 50px;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.support-card {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.support-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.support-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.support-availability {
    display: inline-block;
    background-color: var(--success-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.support-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.support-button:hover {
    background-color: var(--primary-color);
    color: white;
}

.support-note {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: var(--border-radius);
    font-style: italic;
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}


.cta-section {
    background-image: linear-gradient(135deg, #051440 0%, #3a56e4 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-subheading {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-highlight {
    color: #7bd3ea;
    font-weight: 700;
}

.cta-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.cta-step {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    width: 200px;
    transition: transform 0.3s ease;
}

.cta-step:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 15px;
    font-weight: 600;
    font-size: 1.2rem;
}

.step-text {
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #7030a0 0%, #9b59b6 100%);
    color: white;
    padding: 15px 40px;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.cta-terms {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .cta-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-step {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
}





.banking-section {
    background-color: #f8f9fa;
}

.banking-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.banking-tables {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.banking-table {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.table-heading {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 20px;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 600;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

th {
    background-color: #f0f4ff;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background-color: #f5f7ff;
}

.method-name {
    font-weight: 600;
    color: var(--primary-color);
}

/* Equal width columns */
th:nth-child(1), td:nth-child(1) {
    width: 50%;
}

th:nth-child(2), td:nth-child(2),
th:nth-child(3), td:nth-child(3) {
    width: 25%;
    text-align: center;
}

.banking-cta {
    text-align: center;
    margin-top: 30px;
}

.banking-cta .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.banking-cta .btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .banking-tables {
        grid-template-columns: 1fr;
    }
    
    th, td {
        padding: 12px 15px;
    }
}


.player-reviews-section {
    background-color: #f8f9fa;
    padding: 70px 0;
}

.pr-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pr-header {
    text-align: center;
    margin-bottom: 50px;
}

.pr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pr-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    position: relative;
}

.pr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pr-card:before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 4rem;
    color: rgba(67, 97, 238, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.pr-content {
    position: relative;
    z-index: 1;
}

.pr-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.pr-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.pr-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.pr-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pr-details {
    flex-grow: 1;
}

.pr-name {
    font-weight: 600;
    margin-bottom: 3px;
}

.pr-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
}

.pr-location {
    opacity: 0.8;
}

.pr-date {
    opacity: 0.8;
}

.pr-rating {
    color: gold;
    font-size: 1.1rem;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .pr-grid {
        grid-template-columns: 1fr;
    }
}