* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', 'Georgia', serif;
    line-height: 1.8;
    color: #1a1a1a;
    background: #f5f5dc;
    overflow-x: hidden;
}

body[dir="rtl"] {
    direction: rtl;
}

/* Simple scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #e8e8d8;
}

::-webkit-scrollbar-thumb {
    background: #8b0000;
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: #a00000;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #8b0000;
    font-family: 'Times New Roman', serif;
    letter-spacing: 0.05em;
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    border-bottom: 3px double #8b0000;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    border-bottom: 2px solid #8b0000;
    padding-bottom: 0.3rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

/* Classic casino colors */
.casino-red {
    color: #8b0000;
}

.casino-gold {
    color: #daa520;
}

.casino-bg {
    background: #f5f5dc;
}

.casino-card {
    background: #ffffff;
    border: 3px solid #8b0000;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.casino-card h2 {
    margin-top: 0;
}

/* Simple button */
.btn-casino {
    background: #8b0000;
    color: #ffffff;
    border: 2px solid #000000;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Times New Roman', serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

.btn-casino:hover {
    background: #a00000;
    box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.4);
}

.btn-casino:active {
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    transform: translate(1px, 1px);
}

/* Section backgrounds */
.section-beige {
    background: #f5f5dc;
}

.section-white {
    background: #ffffff;
}

.section-red {
    background: #8b0000;
    color: #ffffff;
}

.section-red h1,
.section-red h2,
.section-red h3 {
    color: #ffd700;
    border-color: #ffd700;
}

/* Input styling - old school */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
textarea,
select {
    width: 100%;
    border: 2px solid #8b0000;
    padding: 10px 15px;
    font-size: 16px;
    font-family: 'Times New Roman', serif;
    background: #ffffff;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: 3px solid #ffd700;
    border-color: #8b0000;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Rules section */
.rules-section {
    background: #ffffff;
    border: 3px solid #8b0000;
    padding: 2rem;
    margin: 2rem 0;
}

.rules-section h3 {
    color: #8b0000;
    border-bottom: 2px solid #8b0000;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.rules-section ul,
.rules-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.rules-section li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Game card */
.game-card {
    background: #ffffff;
    border: 2px solid #8b0000;
    padding: 1.5rem;
    margin: 1rem 0;
}

.game-card h3 {
    color: #8b0000;
    margin-top: 0;
}

/* Decorative elements */
.decorative-line {
    border-top: 2px solid #8b0000;
    border-bottom: 1px solid #8b0000;
    margin: 2rem 0;
    height: 5px;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-family: 'Times New Roman', serif;
}

table th,
table td {
    border: 2px solid #8b0000;
    padding: 12px;
    text-align: left;
}

table th {
    background: #8b0000;
    color: #ffffff;
    font-weight: bold;
}

table tr:nth-child(even) {
    background: #f9f9f0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    .casino-card {
        padding: 1.5rem;
    }
}

/* Classic casino header decoration */
.header-decoration {
    background: repeating-linear-gradient(
        45deg,
        #8b0000,
        #8b0000 10px,
        #a00000 10px,
        #a00000 20px
    );
    height: 5px;
    margin-bottom: 1rem;
}

/* Year display */
.established-year {
    font-size: 1.2rem;
    color: #8b0000;
    font-weight: bold;
    font-style: italic;
}

