@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

:root {
    --primary-red: #8B0000;
    --secondary-red: #DC143C;
    --gold: #FFD700;
    --dark-gold: #B8860B;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --light-gray: #2A2A2A;
    --white: #FFFFFF;
    --gradient-red: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    max-width: 100vw;
}

.orbitron {
    font-family: 'Orbitron', monospace;
}

section {
    padding: 5rem 1rem;
   
    margin: 0 auto;
    width: 100%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo img {
    width: 50px;
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: 0.3s;
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-x: hidden;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 2rem;
    margin: 1rem 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.5) 0%, rgba(220, 20, 60, 0.5)), url('img/bg.jpeg') no-repeat center center/cover;
}
.about {
      background: linear-gradient(135deg, rgba(139, 0, 0, 0.5) 0%, rgba(220, 20, 60, 0.5)), url('img/bd2.jpeg') no-repeat center center/cover;
  
}
.hero-content h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3); }
    to { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.6); }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 90%;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-gold);
    color: var(--black);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

/* Section Styles */
.section {
    padding: 5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Casino Cards */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.casino-card {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--light-gray) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    width: 100%;
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: var(--gold);
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.casino-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.casino-logo {
    width: 80px;
    height: 50px;
    margin-right: 1rem;
}

a {
    text-decoration: none;
    color: var(--gold);
}

.casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.casino-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.casino-rating {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Tabs */
.tabs {
    margin: 3rem 0;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button {
    padding: 1rem 2rem;
    background: var(--dark-gray);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.tab-button.active, .tab-button:hover {
    background: var(--gradient-gold);
    color: var(--black);
}

.tab-content {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 15px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Accordion */
.accordion {
    margin: 3rem 0;
}

.accordion-item {
    margin-bottom: 1rem;
}

.accordion-header {
    background: var(--gradient-red);
    color: var(--white);
    padding: 1rem;
    width: 100%;
    text-align: left;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: var(--gradient-gold);
    color: var(--black);
}

.accordion-content {
    display: none;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 0 0 10px 10px;
}

.accordion-content.active {
    display: block;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 15px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--light-gray);
    border: none;
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .casino-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .casino-card {
        padding: 1rem;
    }

    .casino-logo {
        width: 60px;
        height: 40px;
    }

    .tab-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tab-button {
        width: 100%;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
    .hero {
    height: 80vh;}
}

/* Additional Sections */
.features-section {
    background: var(--dark-gray);
    margin: 3rem 0;
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gold);
}

/* Footer */
footer {
    background: var(--black);
    padding: 3rem 1rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 2rem;
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 10px;
}