* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: radial-gradient(circle at top, #111 0%, #000 70%);
    color: white;
    overflow-x: hidden;
}

/* GOLD ANIMATION */
@keyframes goldPulse {
    0% { box-shadow: 0 0 10px #b8860b; }
    50% { box-shadow: 0 0 35px #ffd700; }
    100% { box-shadow: 0 0 10px #b8860b; }
}

/* AGE GATE */
#ageGate {
    position: fixed;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: opacity 0.5s ease;
}

.age-box {
    background: #111;
    border: 2px solid gold;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    animation: goldPulse 2s infinite;
}

.age-box button {
    margin-top: 20px;
    padding: 12px 30px;
    background: gold;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 10px;
    transition: 0.3s;
}

.age-box button:hover {
    transform: scale(1.1);
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    font-size: 22px;
    font-weight: bold;
    color: gold;
}

.twitch {
    background: #9146ff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 800;
}

.hero h1 span {
    color: gold;
    text-shadow: 0 0 20px gold;
}

.hero p {
    color: #aaa;
    margin-top: 10px;
}

.badge {
    background: #111;
    border: 1px solid gold;
    padding: 6px 15px;
    border-radius: 20px;
}

/* CARD */
.casino-list {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.casino-card {
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 20px;
    width: 370px;
    padding: 25px;
    transition: 0.4s ease;
}

.casino-card:hover {
    transform: translateY(-10px);
    border-color: gold;
    box-shadow: 0 0 40px rgba(255,215,0,0.4);
}

.card-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rank {
    background: #111;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid gold;
    color: gold;
}

.sticky {
    margin-left: auto;
    background: gold;
    color: black;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 5px;
}

.casino-image {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.casino-image img {
    width: 100%;
    transition: 0.4s;
}

.casino-card:hover img {
    transform: scale(1.05);
}

.bonus h2 {
    margin-top: 20px;
    font-size: 22px;
}

.bonus p {
    color: gold;
    margin-top: 5px;
}

.info {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #222;
}

.actions {
    margin-top: 25px;
    display: flex;
    gap: 10px;
}

.play-btn {
    flex: 1;
    background: linear-gradient(90deg, #b8860b, #ffd700);
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: 0.3s;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px gold;
}

.details-btn {
    background: transparent;
    border: 1px solid #333;
    color: #aaa;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
}

/* FOOTER */
footer {
    margin-top: 80px;
    padding: 40px;
    text-align: center;
    background: #0a0a0a;
    border-top: 1px solid #222;
    font-size: 13px;
    color: #777;
}

.socials {
    display: flex;
    gap: 20px;
}

.socials a {
    color: gold;
    font-size: 22px;
    transition: 0.3s;
}

.socials a:hover {
    transform: scale(1.2);
    text-shadow: 0 0 15px gold;
}


/* GOLD PARTICLES BACKGROUND */

body::before {
    content: "";
    position: fixed;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(gold 1px, transparent 1px);
    background-size: 40px 40px;
    animation: particlesMove 60s linear infinite;
    opacity: 0.08;
    z-index: -1;
}

@keyframes particlesMove {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(-200px, -200px);
    }
}

