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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #0f1a2a;
    background-image: linear-gradient(to bottom, #0f1a2a, #1a2c4c);
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* Disclaimer Bar */
.disclaimer-bar {
    background-color: #0a3b66;
    color: #fff;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
}

/* Header Styles */
header {
    background-color: transparent;
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-online {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

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

.btn-contact {
    background-color: #fff;
    color: #333;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #3498db;
    color: #fff;
}

.page-container {
    background-color: #1e3a5f;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #ccc;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    position: relative;
    background-image: linear-gradient(to right, #0f1a2a 40%, rgba(26, 44, 76, 0.85)), url('/images/hero-bg.png');
    background-size: cover;
    background-position: center right;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    text-align: left;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(52, 152, 219, 0.2);
    color: #3498db;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
    font-weight: 700;
}

.highlight {
    color: #3498db;
    position: relative;
    padding: 0 5px;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(52, 152, 219, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.btn-hero-primary, .btn-hero-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background-color: #3498db;
    color: #fff;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.btn-hero-primary:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.6);
}

.btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.feature-badge {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 8px 15px;
    font-size: 0.9rem;
    color: #fff;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.feature-icon {
    color: #2ecc71;
    margin-right: 8px;
    font-weight: bold;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45%;
}

.hero-img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-shape {
    position: absolute;
    width: 85%;
    height: 85%;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.8;
    animation: morph 8s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    75% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Casino List Section */
.casinos-list {
    padding: 40px 0;
}

.casino-item {
    background-color: #1a2c4c;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.casino-rank {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #3498db;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 10px;
    z-index: 2;
}

.rank-number {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
}

.rank-text {
    font-size: 0.6rem;
    text-align: center;
    max-width: 80%;
    line-height: 1;
    margin-top: 2px;
}

.casino-logo-container {
    width: 150px;
    padding: 20px;
    background-color: #0f1a2a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.casino-logo {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.casino-rating {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.star-rating {
    color: #f1c40f;
    font-size: 1.5rem;
}

.rating-score {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.casino-details {
    flex: 1;
    padding: 20px;
}

.casino-details h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.casino-features {
    display: flex;
    gap: 20px;
}

.feature-column {
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.check-icon {
    color: #2ecc71;
    margin-right: 8px;
    font-weight: bold;
}

.feature-text {
    font-size: 0.9rem;
    color: #ccc;
}

.casino-cta {
    width: 150px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn-play {
    display: inline-block;
    background-color: #2ecc71;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-play:hover {
    background-color: #27ae60;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #0f1a2a;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.certification-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.cert-logo {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.cert-logo:hover {
    opacity: 1;
}

.disclaimer {
    background-color: #1a2c4c;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.disclaimer h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #3498db;
}

.disclaimer p {
    font-size: 0.9rem;
    color: #ccc;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links a {
    color: #3498db;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 900px) {
    .casino-item {
        flex-wrap: wrap;
    }
    
    .casino-logo-container {
        width: 100%;
        padding: 30px 20px 20px;
    }
    
    .casino-details {
        width: 100%;
    }
    
    .casino-cta {
        width: 100%;
        padding: 0 20px 20px;
    }
    
    .casino-features {
        flex-direction: column;
        gap: 10px;
    }

    /* Hero responsive styles */
    .hero-container {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-cta {
        justify-content: center;
    }

    .features-container {
        justify-content: center;
    }

    .hero-image {
        width: 80%;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }
    
    .casino-details h3 {
        font-size: 1.1rem;
    }
    
    .feature-text {
        font-size: 0.8rem;
    }
    
    .certification-logos {
        gap: 10px;
    }
    
    .cert-logo {
        height: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-image {
        width: 90%;
    }
} 