/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

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

.logo h1 {
    font-size: 2rem;
    font-weight: bold;
    display: inline-block;
}

.tagline {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: normal;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2d4a6b 0%, #1a2742 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 3rem;
    font-weight: normal;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.feature p {
    font-size: 1rem;
    opacity: 0.9;
}

.trust-badges {
    margin-top: 2rem;
}

.badge {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    border: 1px solid #ffd700;
}

/* Casino List */
.casino-list {
    padding: 4rem 0;
    background: white;
}

.casino-list h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2742;
}

.casino-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

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

.casino-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.casino-logo {
    margin-right: 1.5rem;
    min-width: 120px;
}

.logo-rizk {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.logo-favbet {
    background: linear-gradient(45deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.logo-germania {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.casino-bonus {
    flex: 1;
}

.bonus-label {
    font-size: 1rem;
    color: #1a2742;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.bonus-amount {
    font-size: 1.6rem;
    color: #000;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.free-spins {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.casino-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    margin: 0 2rem;
}

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

.votes {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.stars {
    color: #ffd700;
    font-size: 1rem;
    margin: 0;
}

.casino-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
}

.score {
    font-size: 2.5rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 1rem;
}

.btn-play, .btn-review {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    width: 140px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-play {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.btn-play:hover {
    background: linear-gradient(45deg, #20c997, #28a745);
    transform: translateY(-2px);
}

.btn-review {
    background: #f8f9fa;
    color: #1a2742;
    border: 2px solid #1a2742;
}

.btn-review:hover {
    background: #1a2742;
    color: white;
}

.disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
    position: absolute;
    bottom: 0.5rem;
    left: 1.5rem;
    right: 1.5rem;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid #e9ecef;
}

/* Content Sections */
.content {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.content-section h2 {
    font-size: 2rem;
    color: #1a2742;
    margin-bottom: 1.5rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #495057;
}

/* Footer */
.footer {
    background: #1a2742;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.certifications {
    margin: 2rem 0;
    text-align: center;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cert {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 1px solid #ffd700;
    font-size: 0.9rem;
}

.footer-links {
    text-align: center;
    margin: 2rem 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #ffd700;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* Policy Pages Styles */
.policy-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.policy-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.policy-section h1 {
    font-size: 2.5rem;
    color: #1a2742;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: #1a2742;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #495057;
}

.policy-section ul {
    margin: 1rem 0 1.5rem 2rem;
}

.policy-section li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #495057;
}

/* Contact Page Styles */
.contact-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h1 {
    font-size: 2.5rem;
    color: #1a2742;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-section > p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #495057;
}

.contact-form-container {
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2742;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a2742;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(45deg, #1a2742, #2d4a6b);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 2rem auto 0;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #2d4a6b, #1a2742);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 39, 66, 0.3);
}

.contact-info {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: #1a2742;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #495057;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .casino-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .casino-left {
        flex-direction: column;
        margin-bottom: 1rem;
    }
    
    .casino-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .casino-center {
        margin: 1rem 0;
    }
    
    .casino-right {
        margin-bottom: 2rem;
    }
    
    .disclaimer {
        position: static;
        margin-top: 1rem;
    }
    
    .content-section {
        padding: 2rem;
    }
    
    .cert-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
    
    .policy-section,
    .contact-section {
        padding: 2rem;
    }
    
    .policy-section h1,
    .contact-section h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .casino-list h2 {
        font-size: 2rem;
    }
    
    .casino-card {
        padding: 1.5rem;
    }
    
    .btn-play, .btn-review {
        width: 120px;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .policy-section,
    .contact-section {
        padding: 1.5rem;
    }
    
    .submit-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card {
    animation: fadeInUp 0.6s ease-out;
}

.content-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.casino-card:hover .casino-logo {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.badge:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}