
/* SlotoBet.io - Norwegian Casino Website Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a237e 0%, #3f51b5 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.header p {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Navigation */
.nav {
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.nav a:hover {
    background: #3f51b5;
    color: white;
}

/* Main Content */
.main-content {
    padding: 2rem 0;
    min-height: 60vh;
}

/* Casino Comparison Table */
.casino-table {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 2rem 0;
}

.casino-card {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1rem;
    align-items: center;
}

.casino-card:last-child {
    border-bottom: none;
}

.casino-card:nth-child(even) {
    background: #f8f9fa;
}

.casino-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3f51b5;
}

.casino-bonus {
    text-align: center;
}

.casino-bonus h3 {
    color: #e91e63;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.casino-bonus p {
    color: #666;
    font-size: 0.9rem;
}

.casino-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #e91e63, #f06292);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.btn-secondary {
    background: #fff;
    color: #3f51b5;
    border: 2px solid #3f51b5;
}

.btn-secondary:hover {
    background: #3f51b5;
    color: white;
}

/* Review Page Styles */
.review-header {
    background: linear-gradient(135deg, #3f51b5, #1a237e);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.review-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.review-content {
    background: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-content h2 {
    color: #3f51b5;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e91e63;
}

.review-content h3 {
    color: #666;
    margin: 1.5rem 0 0.5rem;
}

.cta-box {
    background: linear-gradient(45deg, #e91e63, #f06292);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

.cta-box h3 {
    margin-bottom: 1rem;
    color: white;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros, .cons {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.pros h3 {
    color: #4caf50;
    margin-bottom: 1rem;
}

.cons h3 {
    color: #f44336;
    margin-bottom: 1rem;
}

.pros ul, .cons ul {
    list-style: none;
    padding-left: 0;
}

.pros li::before {
    content: "✓ ";
    color: #4caf50;
    font-weight: bold;
}

.cons li::before {
    content: "✗ ";
    color: #f44336;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
}

.footer-links a:hover {
    color: #e91e63;
}

/* Responsive Design */
@media (max-width: 768px) {
    .casino-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .header h1 {
        font-size: 2rem;
    }

    .review-header h1 {
        font-size: 2rem;
    }

    .nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.highlight {
    background: linear-gradient(45deg, #fff3e0, #ffe0b2);
    padding: 1rem;
    border-left: 4px solid #ff9800;
    margin: 1rem 0;
}
