:root {
    --accent: #f4c947;
    --accent-dark: #b86b00;
    --bg-main: #111114;
    --bg-alt: #191A1D;
    --border: #201E1E;
    --text-color: #a49e91;
    --font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    --header-height: 100px;
    --logo-height: 90px;
    --wrapper-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.6;
}

section[id] {
    scroll-margin-top: var(--header-height);
}

a {
    text-decoration: none;
    color: var(--accent-dark);
    transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out;
    font-weight: 500;
}

a:hover {
    color: var(--accent);
}

a:active {
    transform: translateY(1px);
}

h1, h2, h3, h4 {
    color: #fff;
}

.strong {
    font-weight: bold;
}

.accent-text,
h1 span, 
h2 span, 
h3 span,
h4 span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    padding-bottom: 0.05em;
    font-weight: inherit;
}

.highlight-alt {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
    filter: drop-shadow(2px 2px 0px #000);
    display: inline;
    vertical-align: baseline;
    margin-left: 4px;
    font-size: 0.9em;
    font-weight: 700;
}

.section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.wrapper {
    width: 100%;
    max-width: var(--wrapper-width);
    padding: 0 20px;
}

.header-section {
    height: var(--header-height);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(17, 17, 20, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: var(--logo-height);
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.logo-img img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 25px;
    font-weight: 500;
}

.nav-link {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.hero-section {
    min-height: calc(100vh - var(--header-height)); 
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-main);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--accent);
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.hero-section::before {
    top: -50px;
    left: -100px;
}

.hero-section::after {
    bottom: 50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: var(--accent-dark);
}

.hero-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    width: 100%;
    z-index: 1;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 30px;
    font-weight: 900;
}

.hero-content p {
    margin-bottom: 35px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
}

.hero-media-box {
    flex: 1;
    background-color: var(--bg-alt);
    border: 1px solid var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px var(--accent), 0 0 60px var(--accent-dark);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn i {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(to bottom, var(--accent) 0%, var(--accent-dark) 100%);
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    border: 1px solid var(--border);
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
    background-color: var(--border);
}

.bonuses-section {
    padding: 80px 0;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 40px;
}

.sub-title {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.header-desc {
    max-width: 400px;
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.bonus-card {
    background-color: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-dark);
}

.top-pick {
    box-shadow: 0 0 10px var(--accent), 0 0 15px var(--accent-dark);
}

.second-pick {
    box-shadow: 0 0 10px #C3C3C3, 0 0 15px #7F7F7F;
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.casino-logo-small {
    width: 100px;
    height: 50px;
    background: var(--bg-main);
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.casino-logo-small img {
    width: 70%;
    height: auto;
    object-fit: contain;
}

.casino-name {
    font-size: 1.3rem;
    font-weight: 700;
}

.bonus-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-row .label {
    font-size: 0.65rem;
    font-weight: 600;
    opacity: 0.5;
    letter-spacing: 0.5px;
}

.detail-row .value {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-full {
    width: 100%;
    text-align: center;
    padding: 18px;
    margin-top: auto;
}

.raffle-cta-section {
    padding: 100px 0;
    background-color: var(--bg-main);
}

.cta-wrapper {
    position: relative;
    z-index: 1;
}

.cta-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: var(--accent);
    filter: blur(120px);
    opacity: 0.15;
    z-index: -1;
}

.cta-box {
    background-color: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 800;
}

.cta-subtext {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    padding: 18px 36px;
    font-size: 0.95rem;
}

.footer-section {
    padding: 40px 0;
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border);
    margin-top: 40px;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-left p {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
}

.footer-right p {
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: right;
    max-width: 500px;
    opacity: 0.6;
}

.footer-right a {
    color: var(--text-color);
    text-decoration: underline;
    font-weight: 400;
}

.footer-right a:hover {
    color: var(--accent);
}

@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
    }
    .hero-media-box {
        min-height: 300px;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .footer-right p {
        text-align: center;
    }
}