@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {

    --bg-dark: #050505;
    --bg-surface: #121212;
    --bg-glass: rgba(30, 30, 35, 0.7);


    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --gold-text: #d4af37;


    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;


    --danger: #ff3b30;
    --success: #34c759;
    --glow-shadow: 0 0 20px rgba(212, 175, 55, 0.3);


    --font-head: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;


    --border-radius: 8px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 0%, #1a1a2e 0%, #050505 60%);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold-text);
}

h3 {
    font-size: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}


.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gold-gradient);
    background-size: 200% auto;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.5s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    background-position: right center;
    box-shadow: var(--glow-shadow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold-text);
    border: 1px solid var(--gold-text);
    padding: 12px 30px;
}

.btn-outline:hover {
    background: var(--gold-text);
    color: #000;
    box-shadow: var(--glow-shadow);
}


header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    transition: var(--transition);
}

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

.logo {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo i {
    color: transparent;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    margin-right: 8px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background: var(--gold-text);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-text);
}

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

.nav-links a.active {
    color: var(--gold-text);
    font-weight: 600;
}

.burger {
    display: none !important;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}


.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(5, 5, 5, 1)),
        url('../img/hero.png') no-repeat center center/cover;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #ddd;
    font-weight: 300;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}


section {
    padding: 100px 0 !important;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 20px auto 0;
}


.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.card {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.card-img-wrapper {
    overflow: hidden;
    height: 450px;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
}

.card-content i {
    margin-bottom: 15px;
    display: inline-block;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card-content h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}


.vip-section {
    background: linear-gradient(180deg, #050505 0%, #15151a 100%);
    position: relative;
    overflow: hidden;
}


.vip-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.vip-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.vip-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.02);
}

.vip-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold-text);
}

.vip-item i {
    font-size: 3.5rem;
    color: var(--gold-text);
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}


input,
textarea,
select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--gold-text);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group {
    margin-bottom: 25px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-group input {
    width: auto;
}


.responsible-gaming {
    background: #000;
    border-top: 1px solid #222;
    padding: 60px 0;
}

.age-warning {
    display: inline-block;
    border: 1px solid var(--danger);
    color: var(--danger);
    padding: 8px 16px;
    margin: 0 auto;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    border-radius: 50%;
}

footer {
    background-color: #020202;
    padding: 80px 0 30px;
    font-size: 0.95rem;
    border-top: 1px solid #111;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-text);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--gold-text);
    padding-left: 5px;
}

.contact-info li {
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info i {
    color: var(--gold-text);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid #111;
    padding-top: 30px;
    text-align: center;
    color: #555;
    font-size: 0.85rem;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background: #111;
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding: 40px 0;
        transform: translateY(-150%);
        transition: transform 0.4s ease-in-out;
        z-index: 999;
        border-bottom: 1px solid var(--gold-text);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .burger {
        display: block !important;
    }
}

.legal-content h2 {
    margin-top: 40px;
    color: var(--gold-text);
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.legal-content h3 {
    margin-top: 25px;
    color: #fff;
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 700;
}

.legal-content p,
.legal-content li {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 1rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content strong {
    color: #fff;
}

.legal-content h2 {
    margin-top: 50px;
    color: var(--gold-text);
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    font-family: var(--font-head);
}

.legal-content h3 {
    margin-top: 30px;
    color: #fff;
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-content p,
.legal-content li {
    color: #d0d0d0;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 25px;
}

.legal-content strong {
    color: #fff;
}

.legal-intro {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 40px;
    border-left: 3px solid var(--gold-text);
    padding-left: 20px;
}