/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: rgba(255,255,255,0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Top Casinos Section */
.top-casinos {
    padding: 4rem 0;
    background: white;
}

.top-casinos h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #333;
}

.casino-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.casino-rank {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-right: 2rem;
    min-width: 50px;
}

.casino-info {
    flex: 1;
    margin-right: 2rem;
}

.casino-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    font-size: 1.2rem;
}

.score {
    font-weight: 600;
    color: #667eea;
}

.features {
    list-style: none;
}

.features li {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.casino-bonus {
    text-align: center;
    min-width: 180px;
}

.bonus-text {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.play-button {
    display: block;
    background: #4ecdc4;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.play-button:hover {
    background: #45b7af;
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #f8fafc;
}

.features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsible Gaming */
.responsible-gaming {
    padding: 3rem 0;
    background: #fff5f5;
    border-left: 5px solid #ff6b6b;
}

.responsible-gaming h2 {
    color: #333;
    margin-bottom: 1rem;
}

.responsible-gaming ul {
    list-style: none;
    margin-top: 1rem;
}

.responsible-gaming li {
    margin-bottom: 0.5rem;
}

.responsible-gaming a {
    color: #667eea;
    text-decoration: none;
}

.responsible-gaming a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #4ecdc4;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4ecdc4;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}

/* Reviews Page Styles */
.reviews {
    padding: 3rem 0;
}

.review-card {
    background: white;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.review-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-bottom: 2px solid #e2e8f0;
}

.review-meta {
    flex: 1;
    margin-right: 2rem;
}

.review-meta h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-cta {
    text-align: center;
}

.bonus-highlight {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.review-button {
    display: block;
    background: #4ecdc4;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.review-button:hover {
    background: #45b7af;
}

.review-content {
    padding: 2rem;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-section h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-section ul {
    list-style: none;
}

.review-section li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.payment-tag {
    background: #e2e8f0;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #4a5568;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.pros, .cons {
    padding: 1.5rem;
    border-radius: 10px;
}

.pros {
    background: #f0fff4;
    border-left: 4px solid #48bb78;
}

.cons {
    background: #fff5f5;
    border-left: 4px solid #f56565;
}

.pros h4, .cons h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

/* Review Criteria */
.review-criteria {
    padding: 3rem 0;
    background: #f8fafc;
}

.review-criteria h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.criteria-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.criteria-item h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Bonuses Page Styles */
.featured-bonuses {
    padding: 3rem 0;
    background: white;
}

.featured-bonuses h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.bonus-card.featured {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, #fff5f5, #ffffff);
}

.bonus-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.casino-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.casino-info h3 {
    font-size: 1.3rem;
    color: #333;
}

.bonus-details {
    margin-bottom: 1.5rem;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.bonus-type {
    color: #666;
    margin-bottom: 0.3rem;
}

.bonus-extras {
    color: #4ecdc4;
    font-weight: 600;
}

.bonus-conditions {
    margin-bottom: 1.5rem;
}

.condition {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.condition .label {
    color: #666;
}

.condition .value {
    font-weight: 600;
    color: #333;
}

.bonus-button {
    width: 100%;
    display: block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.bonus-button:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Bonus Types */
.bonus-types {
    padding: 3rem 0;
    background: #f8fafc;
}

.bonus-types h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.bonus-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-type-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.bonus-type-card:hover {
    transform: translateY(-5px);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-type-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.bonus-example {
    background: #e2e8f0;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Current Promotions */
.current-promotions {
    padding: 3rem 0;
    background: white;
}

.current-promotions h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.promotion-list {
    max-width: 800px;
    margin: 0 auto;
}

.promotion-item {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #667eea;
}

.promotion-date {
    text-align: center;
    margin-right: 2rem;
    min-width: 80px;
}

.promotion-date .month {
    display: block;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
}

.promotion-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.promotion-info {
    flex: 1;
    margin-right: 2rem;
}

.promotion-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.promotion-casinos {
    margin-top: 1rem;
}

.casino-tag {
    background: #e2e8f0;
    color: #4a5568;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.promotion-prize {
    text-align: center;
    min-width: 120px;
}

.promotion-prize strong {
    display: block;
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-bottom: 0.2rem;
}

.promotion-prize span {
    font-size: 0.8rem;
    color: #666;
}

/* Bonus Tips */
.bonus-tips {
    padding: 3rem 0;
    background: #f8fafc;
}

.bonus-tips h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Wagering Calculator */
.wagering-calculator {
    padding: 3rem 0;
    background: white;
}

.wagering-calculator h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.calculator-box {
    max-width: 600px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.calculator-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.input-group {
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
}

.calc-button {
    grid-column: 1 / -1;
    background: #667eea;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.calc-button:hover {
    background: #5a67d8;
}

.calc-result {
    margin-top: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    font-size: 1.1rem;
}

/* FAQ */
.bonus-faq {
    padding: 3rem 0;
    background: #f8fafc;
}

.bonus-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .casino-card {
        flex-direction: column;
        text-align: center;
    }
    
    .casino-rank {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .casino-info {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .review-header {
        flex-direction: column;
        text-align: center;
    }
    
    .review-meta {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .promotion-item {
        flex-direction: column;
        text-align: center;
    }
    
    .promotion-date,
    .promotion-info {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .calculator-form {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
}