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

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

.go-ref {
    cursor: pointer;
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-auth, .btn-copy, .btn-poll, .btn-play {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary, .btn-play {
    background: #1A64FC;
    color: white;
    font-size: 16px;
    padding: 15px 30px;
}

.btn-primary:hover, .btn-play:hover {
    background: white;
    color: #1A64FC;
    border: 2px solid #1A64FC;
}

.btn-secondary {
    background: #0090FF;
    color: white;
    font-size: 14px;
}

.btn-secondary:hover {
    background: white;
    color: #0090FF;
    border: 2px solid #0090FF;
}

.btn-auth {
    background: #1A64FC;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
}

.btn-auth:hover {
    background: white;
    color: #1A64FC;
    border: 2px solid #1A64FC;
}

.btn-login {
    background: transparent;
    color: #ffffff;
    border: 2px solid #1A64FC;
}

.btn-login:hover {
    background: #1A64FC;
    color: white;
}

/* Header */
.header {
    background: linear-gradient(135deg, #0090FF 0%, #1A64FC 100%);
    color: white;
    position: relative;
    z-index: 1000;
}

.header-top {
    background: rgba(26, 100, 252, 0.2);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.language-selector {
    position: relative;
    cursor: pointer;
}

.language-selector span {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.languages-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 80px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 100;
}

.language-selector:hover .languages-dropdown {
    display: block;
}

.languages-dropdown a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
}

.languages-dropdown a:hover {
    background: #F9FAFA;
    color: #0090FF;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.header-main {
    padding: 15px 0;
}

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

.logo h2 {
    font-family: 'Pacifico', cursive;
    font-size: 28px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #F9FAFA;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0090FF 0%, #1A64FC 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.promo-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-promo {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-card {
    margin-bottom: 20px;
}

.promo-percent {
    font-size: 48px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-amount {
    font-size: 24px;
    font-weight: 600;
    color: #F9FAFA;
    margin: 10px 0;
}

.promo-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.promo-code {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.promo-code input {
    flex: 1;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    font-weight: 600;
}

.promo-code input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-copy {
    background: white;
    color: #1A64FC;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 600;
}

.btn-copy:hover {
    background: #F9FAFA;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.main-content section {
    margin-bottom: 60px;
}

.main-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1A64FC;
    margin-bottom: 30px;
    text-align: center;
}

.main-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0090FF;
    margin-bottom: 20px;
}

/* Casino Info Section */
.casino-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 144, 255, 0.1);
    margin-bottom: 40px;
}

.poll-section {
    background: #F9FAFA;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid #0090FF;
}

.poll-options {
    margin: 20px 0;
}

.poll-options label {
    display: block;
    margin: 10px 0;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.poll-options label:hover {
    background: rgba(0, 144, 255, 0.1);
}

.poll-options input[type="radio"] {
    margin-right: 10px;
    accent-color: #0090FF;
}

.casino-description p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

/* Casino Stats Table */
.casino-stats {
    margin: 40px 0;
    overflow-x: auto;
}

.casino-stats table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.casino-stats td {
    padding: 15px 20px;
    border-bottom: 1px solid #F9FAFA;
    vertical-align: top;
}

.casino-stats td:first-child {
    background: #F9FAFA;
    font-weight: 600;
    color: #1A64FC;
    width: 250px;
}

.casino-stats td:last-child {
    color: #555;
}

/* How to Play Section */
.how-to-play {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 144, 255, 0.1);
}

.how-to-play ol {
    margin: 30px 0;
    padding-left: 20px;
}

.how-to-play li {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.how-to-play p {
    font-size: 16px;
    color: #555;
    margin-top: 20px;
}

/* Games Preview */
.games-preview {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 144, 255, 0.1);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.game-category h3 {
    background: linear-gradient(135deg, #0090FF, #1A64FC);
    color: white;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    margin-bottom: 0;
}

.game-item {
    background: #F9FAFA;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.game-card {
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image {
    font-size: 48px;
    margin-bottom: 15px;
}

.game-card h4 {
    color: #1A64FC;
    font-weight: 600;
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, #0090FF, #1A64FC);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.bonus-section h2 {
    color: white;
    margin-bottom: 20px;
}

.bonus-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.bonus-section ul {
    list-style: none;
    margin: 20px 0;
}

.bonus-section li {
    padding: 10px 0;
    font-size: 16px;
    position: relative;
    padding-left: 30px;
}

.bonus-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F9FAFA;
    font-weight: bold;
    font-size: 18px;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 144, 255, 0.1);
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #F9FAFA;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: #F9FAFA;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1A64FC;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 144, 255, 0.1);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
}

/* Payment Methods */
.payment-methods {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 144, 255, 0.1);
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.payment-method {
    background: #F9FAFA;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    color: #555;
    border-left: 5px solid #0090FF;
}

/* Support Section */
.support-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 144, 255, 0.1);
}

.support-section ul {
    list-style: none;
    margin-top: 20px;
}

.support-section li {
    padding: 10px 0;
    font-size: 16px;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.support-section li::before {
    content: "📞";
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1A64FC 0%, #0090FF 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Pacifico', cursive;
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-social h4 {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.8;
}

.age-warning {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .promo-code {
        flex-direction: column;
    }

    .casino-stats td:first-child {
        width: auto;
    }

    .auth-buttons {
        flex-direction: column;
        gap: 5px;
    }

    .header-controls {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .main-content {
        padding: 40px 0;
    }

    .casino-info,
    .how-to-play,
    .games-preview,
    .payment-methods,
    .support-section,
    .faq-section {
        padding: 20px;
    }

    .main-content h2 {
        font-size: 24px;
    }

    .payment-icons {
        grid-template-columns: 1fr;
    }
}

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

.casino-info,
.how-to-play,
.games-preview,
.bonus-section,
.faq-section,
.payment-methods,
.support-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F9FAFA;
}

::-webkit-scrollbar-thumb {
    background: #0090FF;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1A64FC;
}
