:root {
    --primary-color: #ff3e7f;
    --secondary-color: #7b2cbf;
    --accent-color: #3a86ff;
    --text-color: #f8f9fa;
    --highlight: #ffd700;
    --section-bg: rgba(255, 255, 255, 0.1);
    --scrollbar-track-color: #202324;
    --scrollbar-thumb-color: #454a4d;
    --scrollbar-thumb-hover-color: #575c5f;
}

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

body {
    background-color: #000;
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Custom Scrollbar Styles */
body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: var(--scrollbar-track-color);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb-color);
    border-radius: 10px;
    border: 3px solid var(--scrollbar-track-color);
}

body::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-thumb-hover-color);
}

/* Firefox scrollbar (limited styling) */
html {
    scrollbar-width: thin; /* "auto" or "thin" */
    scrollbar-color: var(--scrollbar-thumb-color) var(--scrollbar-track-color); /* thumb and track */
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    border-bottom: 1px solid var(--secondary-color);
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 62, 127, 0.3);
}

.tagline {
    font-size: 1.2rem;
    color: var(--highlight);
    font-style: italic;
    margin-bottom: 20px;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

section {
    background: var(--section-bg);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(123, 44, 191, 0.2);
}

h2 {
    color: var(--highlight);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.8rem;
}

h3 {
    color: var(--primary-color);
    margin: 15px 0 8px;
    font-size: 1.3rem;
}

p {
    margin-bottom: 10px;
}

ul, ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 5px;
}

.important {
    color: var(--highlight);
    font-weight: bold;
}

.feature-highlight {
    background: linear-gradient(90deg, rgba(255, 62, 127, 0.2), rgba(123, 44, 191, 0.2));
    border-left: 4px solid var(--primary-color);
    padding: 10px 15px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
}

.feature-highlight h4 {
    color: var(--highlight);
    margin-bottom: 5px;
}

.special-symbol {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Shared layout for Special Symbols blocks with a big icon on the left */
.special-symbol-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    column-gap: 20px;
    align-items: center;
}

.special-symbol-card .special-symbol {
    width: 120px;
    height: 120px;
    margin-right: 0;
}

.special-symbol-card .text {
    display: flex;
    flex-direction: column;
}

.special-symbol-card h4 {
    margin-bottom: 8px;
}


.game-layout {
    background: linear-gradient(90deg, rgba(58, 134, 255, 0.2), rgba(255, 215, 0, 0.2));
    border-left: 4px solid var(--accent-color);
    padding: 10px 15px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
}

.disclaimer {
    font-style: italic;
    font-size: 0.8rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .container {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 20px;
    }

    .special-symbol-card {
        grid-template-columns: 110px 1fr;
        column-gap: 16px;
    }
    .special-symbol-card .special-symbol {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    header {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    body {
        padding: 10px;
    }
    
    section {
        padding: 15px;
    }

    .special-symbol-card {
        grid-template-columns: 90px 1fr;
        column-gap: 12px;
    }
    .special-symbol-card .special-symbol {
        width: 70px;
        height: 70px;
    }
} 