
:root {
    --primary-color: #ff3d00;
    --primary-hover: #e63700;
    --secondary-color: #1a1a2e;
    --accent-color: #ffd700;
    --text-main: #e0e0e0;
    --text-secondary: #a0a0b0;
    --bg-body: #0f0f1a;
    --bg-card: #16213e;
    --bg-header: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-btn: linear-gradient(45deg, #ff3d00, #ff9100);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(255, 61, 0, 0.4);
    --border-radius-lg: 1.5rem;
    --border-radius-md: 0.75rem;
    --border-radius-sm: 0.5rem;
    --transition-speed: 0.3s;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --container-width: 1200px;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
}

/* Reset & Normalize */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.row-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cul-xs-12 {
    width: 100%;
}

.text-center {
    text-align: center;
}

.pa-0 {
    padding: 0 !important;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

h1 span {
    color: var(--accent-color);
    display: block;
    font-size: 0.6em;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-top: var(--spacing-lg);
    border-left: 5px solid var(--primary-color);
    padding-left: 1rem;
    background: linear-gradient(90deg, rgba(255, 61, 0, 0.1), transparent);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--accent-color);
    margin-top: var(--spacing-md);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.text {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2rem;
}

/* Lists */
ul {
    list-style: none;
    margin-bottom: 2rem;
}

ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

ul li::before {
    content: '►';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.8rem;
    transition: transform var(--transition-speed);
}

ul li:hover::before {
    transform: translateX(5px);
}

ul li b, ul li strong {
    color: #fff;
    font-weight: 600;
}

/* Header Styles */
header.bg-casino {
    background: var(--bg-header);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

header.bg-casino::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 61, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.table {
    display: table;
    width: 100%;
    height: 100%;
}

.center {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

/* Buttons */
.button {
    display: inline-block;
    background: var(--gradient-btn);
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-speed) ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: 1rem 0;
    text-align: center;
    text-decoration: none;
}

.button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff9100, #ff3d00);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-speed);
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 61, 0, 0.6);
}

.button:hover::after {
    opacity: 1;
}

.button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 61, 0, 0.4);
}

/* Content Section */
.content {
    background-color: var(--bg-card);
    padding: 3rem 2rem;
    margin: -3rem auto 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
}

/* Images */
.img {
    margin: 3rem 0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.img:hover img {
    transform: scale(1.05);
}

/* Lazyload placeholder style */
.lazyload {
    opacity: 0;
    transition: opacity 0.5s;
}

.lazyloaded {
    opacity: 1;
}

/* Form Elements (Generic styling if forms are added later) */
input[type="text"], 
input[type="email"], 
textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: #fff;
    margin-bottom: 1rem;
    transition: border-color var(--transition-speed);
}

input:focus, 
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 61, 0, 0.2);
}

/* Footer */
footer {
    padding: 3rem 0;
    background-color: #050510;
    color: var(--text-secondary);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

footer p {
    margin: 0;
    line-height: 1.8;
}

/* Media Queries */
@media (max-width: 992px) {
    :root {
        --spacing-lg: 3rem;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 2rem 1rem;
        margin-top: -2rem;
        border-radius: var(--border-radius-md);
    }

    header.bg-casino {
        min-height: 60vh;
        padding: 2rem 0;
    }

    h1 {
        margin-bottom: 1.5rem;
    }

    .button {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
    }

    ul li {
        padding-left: 1.5rem;
    }
}

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

h1, .text, .button {
    animation: fadeIn 0.8s ease-out forwards;
}

.text { animation-delay: 0.2s; }
.button { animation-delay: 0.4s; }
