/* Main Styles for Spinbara Casino Website */

/* Base Styles & Variables */
:root {
    --primary-color: #6e2feb;
    --secondary-color: #ff8a00;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #1a1735;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #f8f9fa;
    --border-radius: 10px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #120d29 0%, #2a2158 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

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

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

ul {
    list-style: none;
}

section {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 30px 0;
    padding: 30px;
}

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

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 15px;
}

/* Header Styles */
header {
    background-color: var(--dark-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo-container {
    max-width: 180px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: var(--text-light);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
}

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

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #5d1cd9;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.2rem;
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 10px;
}

.badge-primary {
    background-color: var(--primary-color);
    color: white;
}

.badge-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.badge-success {
    background-color: var(--success-color);
    color: white;
}

.badge-info {
    background-color: var(--info-color);
    color: white;
}

.badge-warning {
    background-color: var(--warning-color);
    color: var(--dark-color);
}

.badge-popular {
    background-color: #ff3e3e;
    color: white;
}

.badge-freespins {
    background-color: #31d8a4;
    color: white;
}

.badge-exclusive {
    background-color: #ffd700;
    color: black;
}

/* Hero Welcome Bonus Section */
.hero-bonus {
    text-align: center;
}

.hero-image {
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    width: 90%;
    max-height: 500px;
    object-fit: cover;
    object-position: top;
}

.bonus-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.bonus-steps {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    margin: 10px;
    background-color: rgba(110, 47, 235, 0.05);
    border-radius: var(--border-radius);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

.bonus-terms {
    background-color: rgba(240, 240, 240, 0.5);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.bonus-terms ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.bonus-terms li {
    margin-bottom: 10px;
}

/* All Promotions Section */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.promo-card {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.terms {
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
}

/* Bonus Crab Section */
.bonus-crab {
    background: linear-gradient(135deg, #f6f0ff 0%, #e6d5ff 100%);
}

.crab-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.crab-image {
    flex: 1;
    min-width: 250px;
}

.crab-info {
    flex: 2;
    min-width: 300px;
}

.crab-steps {
    margin-top: 20px;
}

.crab-step {
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: var(--border-radius);
}

.crab-step h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Games Portfolio Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.game-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--primary-color);
}

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

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

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

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    opacity: 0.8;
    transition: var(--transition);
}

.game-card:hover .play-icon {
    opacity: 1;
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
}

.game-card h3 {
    padding: 15px 15px 5px;
    font-size: 1.2rem;
}

.game-info {
    padding: 0 15px 15px;
    color: #666;
    font-size: 0.9rem;
}

.game-image .badge {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
}

.faq-answer {
    padding: 15px 20px;
    background-color: white;
}

/* Payment Methods Section */
.table-responsive {
    overflow-x: auto;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.payment-table th,
.payment-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.payment-table thead th {
    background-color: var(--primary-color);
    color: white;
}

.payment-table tbody tr:nth-child(even) {
    background-color: rgba(240, 240, 240, 0.5);
}

.payment-table tbody tr:hover {
    background-color: rgba(110, 47, 235, 0.05);
}

/* Withdrawal Limits Section */
.limits-info {
    max-width: 700px;
    margin: 0 auto;
}

.limits-table {
    margin: 20px 0;
    overflow-x: auto;
}

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

.limits-table th,
.limits-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.limits-table thead th {
    background-color: var(--primary-color);
    color: white;
}

.limits-table tbody tr:nth-child(even) {
    background-color: rgba(240, 240, 240, 0.5);
}

.note {
    font-style: italic;
    color: #666;
    text-align: center;
    margin-top: 20px;
}

/* About Casino Section */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Responsible Gambling Section */
.responsible-gambling {
    background-color: rgba(240, 240, 240, 0.9);
}

.responsible-content {
    max-width: 800px;
    margin: 0 auto;
}

.support-orgs {
    margin-top: 20px;
    padding-left: 20px;
}

.support-orgs li {
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #6e2feb 0%, #5d1cd9 100%);
    color: white;
    text-align: center;
    padding: 50px 30px;
}

.cta-section h2 {
    color: white;
}

.cta-section .btn {
    background-color: var(--secondary-color);
    color: white;
    margin-top: 20px;
}

.cta-section .btn:hover {
    background-color: #e67e00;
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: var(--text-light);
    padding: 40px 0;
    margin-top: 50px;
}

.footer-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.footer-links a {
    color: var(--text-light);
}

.responsible-message {
    font-weight: 600;
    margin: 20px 0;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 20px;
}

.operator-info {
    font-size: 0.8rem;
    opacity: 0.7;
    max-width: 800px;
    margin: 30px auto 0;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* Trustpilot Reviews Section */
.trustpilot-reviews {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    border: 1px solid #e0e7ff;
}

.trustpilot-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.trustpilot-rating-block {
    background: linear-gradient(135deg, #00b67a 0%, #00a86b 100%);
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 30px auto;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 182, 122, 0.2);
}

.rating-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.trustpilot-logo {
    height: 30px;
    filter: brightness(0) invert(1);
}

.rating-info {
    color: white;
}

.rating-score {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.rating-stars {
    margin: 5px 0;
}

.rating-stars .star {
    font-size: 1.5rem;
    color: white;
    margin: 0 2px;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 30px auto;
    max-width: 700px;
    box-shadow: var(--box-shadow);
    border-left: 4px solid #00b67a;
}

.review-card .review-stars {
    margin-bottom: 15px;
}

.review-card .star {
    font-size: 1.2rem;
    color: #ffa500;
    margin-right: 3px;
}

.review-title {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: 600;
    color: var(--dark-color);
}

.review-date {
    font-size: 0.9rem;
    color: #888;
}

.verified-badge {
    background: #00b67a;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rating-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .verified-badge {
        align-self: flex-start;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    nav ul {
        margin-bottom: 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .bonus-steps, 
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .crab-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .games-grid,
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px;
    }
    
    .step {
        min-width: 100%;
    }
}