/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: #fff !important;
    text-decoration: none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0e1a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #1a1f2e;
    margin: 15% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    border: 2px solid #ffd700;
}

.modal-header h2 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 24px;
}

.modal-body p {
    margin-bottom: 15px;
    font-size: 16px;
}

.modal-footer {
    margin-top: 25px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1f2e;
    border-top: 2px solid #ffd700;
    padding: 20px;
    z-index: 999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-link {
    color: #ffd700;
    text-decoration: none;
    font-size: 14px;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background-color: #28a745;
    color: white;
}

.btn-primary:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-play {
    background-color: #28a745;
    color: white;
    font-weight: 700;
    padding: 15px 30px;
    font-size: 16px;
}

.btn-play:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.btn-visit {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #6c757d;
    padding: 12px 20px;
}

.btn-visit:hover {
    background-color: #6c757d;
    color: white;
}

/* Header */
.header {
    background-color: #0a0e1a;
    padding: 20px 0;
    border-bottom: 1px solid #2a3441;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 80px;
    height: 80px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #ffd700;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag-icon {
    font-size: 24px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="chips" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="8" fill="%23ffd700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23chips)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.hero-update {
    font-size: 16px;
    color: #adb5bd;
    margin-bottom: 40px;
}

.hero-benefits {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.benefit-icon {
    color: #ffd700;
    margin-right: 10px;
}

.benefit-text {
    font-size: 16px;
    color: #adb5bd;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Features */
.features {
    padding: 40px 0;
    background-color: #1a1f2e;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-tag {
    background-color: #2a3441;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #adb5bd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.feature-tag.secure {
    background-color: #28a745;
    color: white;
}

.feature-tag.fast {
    background-color: #dc3545;
    color: white;
}

.feature-icon {
    font-weight: 700;
    font-size: 16px;
}

/* Vitrina */
.vitrina {
    padding: 60px 0;
    background-color: #0a0e1a;
}

.casino-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.casino-card {
    background-color: #1a1f2e;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #2a3441;
    position: relative;
    transition: all 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.casino-rank {
    position: absolute;
    top: -10px;
    left: 25px;
    background-color: #ffd700;
    color: #0a0e1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.casino-rank.best-choice {
    background-color: #ff6b35;
}

.casino-rank.popular {
    background-color: #28a745;
}

.casino-rank.fast-withdraw {
    background-color: #dc3545;
}

.casino-content {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 25px;
    align-items: center;
}

.casino-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
}

.casino-info {
    flex: 1;
}

.casino-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.casino-offer {
    font-size: 18px;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 8px;
}

.casino-deposit {
    font-size: 16px;
    color: #adb5bd;
    margin-bottom: 10px;
}

.bonus-code {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.bonus-code-label {
    font-size: 14px;
    color: #adb5bd;
}

.bonus-code-value {
    background-color: #2a3441;
    border: 2px dashed #ffd700;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 700;
    color: #ffd700;
    font-size: 14px;
}

.casino-rating {
    text-align: center;
}

.rating-score {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.rating-stars {
    font-size: 20px;
    color: #ffd700;
}

.casino-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 150px;
}

.casino-disclaimer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #2a3441;
    font-size: 12px;
    color: #6c757d;
    text-align: center;
}

/* Footer */
.footer {
    background-color: #0a0e1a;
    padding: 40px 0;
    border-top: 1px solid #2a3441;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-legal {
    font-size: 14px;
    color: #6c757d;
}

.footer-legal a {
    color: #ffd700;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .casino-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .casino-actions {
        flex-direction: row;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .casino-card {
        padding: 20px;
    }

    .casino-rank {
        left: 20px;
    }
}
