:root {
    --primary-brown: #8B4513;
    --dark-wood: #2F1B0C;
    --light-wood: #4A3728;
    --gold: #DAA520;
    --bright-gold: #FFD700;
    --red: #B22222;
    --parchment: #F4E4C1;
    --tan: #D2B48C;
    --shadow: rgba(0, 0, 0, 0.6);
}

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

body {
    font-family: 'Roboto Slab', serif;
    background-color: var(--dark-wood);
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(0,0,0,0.1) 50px, rgba(0,0,0,0.1) 53px),
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(0,0,0,0.1) 50px, rgba(0,0,0,0.1) 53px),
        linear-gradient(to bottom, #3E2723, #2F1B0C);
    color: var(--parchment);
    line-height: 1.6;
    overflow-x: hidden;
}
.dust-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
    animation: dustFloat 20s infinite linear;
    z-index: 1;
}

@keyframes dustFloat {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(20px) translateY(-10px); }
    100% { transform: translateX(0) translateY(0); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
.main-header {
    background: linear-gradient(to bottom, #3E2723, #2F1B0C);
    border-bottom: 4px solid var(--gold);
    box-shadow: 0 4px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.logo h1 {
    font-family: 'Rye', serif;
    font-size: 2rem;
    color: var(--gold);
    text-shadow: 2px 2px 4px var(--shadow);
    letter-spacing: 3px;
}

.revolver-icon {
    font-size: 1.5rem;
    filter: sepia(100%) saturate(300%);
}

.revolver-icon.flip {
    transform: scaleX(-1);
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

nav a {
    color: var(--parchment);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--bright-gold);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(218, 165, 32, 0.5);
    text-shadow: 0 0 10px var(--gold);
}
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    right: 20px;
    top: 25px;
}

.nav-toggle-label span {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
}
.bandit {
    padding: 60px 20px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(139, 69, 19, 0.3) 0%, transparent 70%);
}

.wanted-poster {
    display: inline-block;
    background: linear-gradient(135deg, #F4E4C1 0%, #D2B48C 100%);
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    transform: rotate(-2deg);
    border: 4px solid #5D4037;
}

.poster-border {
    border: 3px solid #3E2723;
    padding: 30px;
    position: relative;
}

.poster-border::before,
.poster-border::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #3E2723;
}

.poster-border::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.poster-border::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.wanted-poster h2 {
    font-family: 'Rye', serif;
    font-size: 3rem;
    color: #3E2723;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.wanted-poster h3 {
    font-family: 'Rye', serif;
    font-size: 1.5rem;
    color: #B22222;
    margin: 15px 0;
}

.slot-image {
    font-size: 5rem;
    margin: 20px 0;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.reward {
    font-family: 'Rye', serif;
    font-size: 1.2rem;
    color: #3E2723;
    background: rgba(218, 165, 32, 0.3);
    padding: 10px;
    border: 2px dashed #3E2723;
    display: inline-block;
    margin-top: 10px;
}

.bullet-holes {
    position: absolute;
    bottom: -10px;
    right: 20px;
    color: #3E2723;
    font-size: 1.5rem;
    letter-spacing: 10px;
    opacity: 0.6;
}

/* Content Sections */
.content-section {
    margin: 40px 0;
    position: relative;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.section-header h2 {
    font-family: 'Rye', serif;
    font-size: 2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px var(--shadow);
    text-align: center;
}

.star-bullet {
    color: var(--gold);
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--gold);
}

.hat-icon, .dollar-icon, .target-icon, .building-icon, .question-icon {
    font-size: 1.8rem;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.5));
}
.wood-card {
    background: linear-gradient(135deg, var(--light-wood) 0%, var(--dark-wood) 100%);
    border: 3px solid var(--primary-brown);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 
        inset 0 0 20px rgba(0,0,0,0.5),
        0 5px 15px var(--shadow);
    position: relative;
    overflow: hidden;
}

.wood-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.wood-card p {
    text-align: justify;
    text-indent: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.leather-texture {
    background: 
        linear-gradient(135deg, rgba(74, 55, 40, 0.9) 0%, rgba(47, 27, 12, 0.9) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.1) 10px, rgba(0,0,0,0.1) 11px);
}

/* Grid Layouts */
.grid-two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.grid-three-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}
.feature-box {
    position: relative;
}

.gold-border {
    background: linear-gradient(145deg, #2F1B0C, #1a0f08);
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    position: relative;
    box-shadow: 
        0 0 20px rgba(218, 165, 32, 0.2),
        inset 0 0 20px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.gold-border:hover {
    box-shadow: 
        0 0 30px rgba(218, 165, 32, 0.4),
        inset 0 0 20px rgba(0,0,0,0.3);
    transform: translateY(-5px);
}

.gold-border::before {
    content: '•';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-wood);
    padding: 0 10px;
    color: var(--gold);
    font-size: 1.5rem;
}

.gold-border h3 {
    font-family: 'Rye', serif;
    color: var(--bright-gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-border p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--tan);
    text-align: left;
    text-indent: 0;
}
.steps-card {
    position: relative;
    padding: 30px;
}

.steps-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.steps-content p:last-child {
    margin-bottom: 0;
}

.rope-decoration {
    position: absolute;
    top: -10px;
    right: 30px;
    width: 20px;
    height: 40px;
    background: repeating-linear-gradient(
        0deg,
        #D2B48C,
        #D2B48C 5px,
        #8B4513 5px,
        #8B4513 10px
    );
    border-radius: 0 0 10px 10px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.casino-card {
    border: 3px solid var(--gold);
    position: relative;
    overflow: visible;
}

.card-header {
    font-family: 'Rye', serif;
    font-size: 1.5rem;
    color: var(--bright-gold);
    text-align: center;
    padding: 15px;
    margin: -25px -25px 20px -25px;
    background: linear-gradient(to bottom, #B22222, #8B0000);
    border-bottom: 3px solid var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.casino-card p {
    text-indent: 0;
    font-size: 1rem;
    line-height: 1.7;
}
.faq-card {
    padding: 30px;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(218, 165, 32, 0.3);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h4 {
    font-family: 'Rye', serif;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4::before {
    content: 'Q:';
    color: var(--red);
    font-weight: bold;
}

.faq-item p {
    text-indent: 0;
    padding-left: 30px;
    font-size: 1rem;
    color: var(--tan);
}
.main-footer {
    background: linear-gradient(to bottom, #1a0f08, #000000);
    border-top: 4px solid var(--gold);
    margin-top: 60px;
    padding: 40px 0 20px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold),
        var(--gold) 20px,
        transparent 20px,
        transparent 40px
    );
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-family: 'Rye', serif;
    color: var(--gold);
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.footer-decorations {
    font-size: 2rem;
    letter-spacing: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(218, 165, 32, 0.3);
    font-size: 0.9rem;
    color: rgba(244, 228, 193, 0.6);
}
@media (max-width: 768px) {
    .nav-toggle-label {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-wood);
        border-bottom: 3px solid var(--gold);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-toggle:checked ~ nav {
        max-height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .wanted-poster h2 {
        font-size: 2rem;
    }
    
    .wood-card {
        padding: 20px;
    }
    
    .grid-two-col,
    .grid-three-col {
        grid-template-columns: 1fr;
    }
    
    .casinos-grid {
        grid-template-columns: 1fr;
    }
}
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-wood);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--gold), var(--primary-brown));
    border-radius: 6px;
    border: 2px solid var(--dark-wood);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--bright-gold), var(--gold));
}

::selection {
    background: var(--gold);
    color: var(--dark-wood);
    text-shadow: none;
}
.bomb {
    background-color:#e8a41c;
    border-radius:28px;
    border:1px solid #e8a41c;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:17px;
    padding:19px 54px;
    text-decoration:none;
    text-shadow:0px 1px 0px #e8a41c;
}
.bomb:hover {
    background-color:#e8a41c;
}
.bomb:active {
    position:relative;
    top:1px;
}
