/* This Is Vegas Casino UK - Styles */
/* Colors: Navy Blue (#0A1929), Dark Blue (#0D2137), Red (#E31E24), Light Blue (#1A2F4A) */

:root {
    --navy: #0B1623;
    --navy-dark: #070D15;
    --dark-blue: #101B2A;
    --medium-blue: #162535;
    --light-blue: #1D2F42;
    --red: #E31E24;
    --red-dark: #B81B1F;
    --red-light: #FF3B3F;
    --white: #FFFFFF;
    --off-white: #E8EAF0;
    --gray-blue: #1F2A3A;
    --accent-blue: #2A3F5F;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Warning Banner */
.warning-banner {
    background: var(--red);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy) 100%);
    padding: 20px 0;
    border-bottom: 3px solid var(--red);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--red);
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.uk-badge {
    background: var(--red);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}

.nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav a {
    color: var(--off-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav a:hover {
    color: var(--red);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.4);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(227, 30, 36, 0.5);
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--off-white);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Bonus Highlight */
.bonus-highlight {
    background: linear-gradient(135deg, var(--medium-blue) 0%, var(--dark-blue) 100%);
    border: 3px solid var(--red);
    border-radius: 15px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(227, 30, 36, 0.3);
}

.bonus-main {
    margin-bottom: 25px;
}

.bonus-label {
    display: block;
    color: var(--red);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.bonus-highlight h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 900;
}

.bonus-extra {
    font-size: 1.2rem;
    color: var(--red-light);
    font-weight: 500;
}

.bonus-note {
    font-size: 0.95rem;
    color: var(--off-white);
    margin-top: 15px;
    font-style: italic;
}

.bonus-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.bonus-code span {
    font-size: 1rem;
    color: var(--off-white);
}

.code-box {
    background: var(--red);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.5);
    font-family: 'Courier New', monospace;
}

/* No Deposit Box */
.no-deposit-box {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 40px rgba(227, 30, 36, 0.4);
}

.no-deposit-icon {
    font-size: 4rem;
}

.no-deposit-content h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 600;
}

.big-text {
    font-size: 2rem;
    color: var(--red);
    font-weight: 900;
    margin-bottom: 5px;
}

.small-text {
    font-size: 0.95rem;
    color: var(--off-white);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    box-shadow: 0 6px 25px rgba(227, 30, 36, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(227, 30, 36, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--red);
}

.btn-secondary:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
    background: var(--red);
    color: var(--white);
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn-small:hover {
    background: var(--red-light);
    transform: scale(1.05);
}

/* Quick Facts */
.quick-facts {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.fact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.fact-icon {
    color: var(--red);
    font-weight: 900;
    font-size: 1.2rem;
}

/* Author Section */
.author-section {
    background: var(--dark-blue);
    padding: 50px 0;
    border-top: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
}

.author-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: var(--medium-blue);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--light-blue);
}

.author-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
}

.author-info h3 {
    color: var(--red);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.author-title {
    color: var(--red-light);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.author-bio {
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 20px;
}

.author-credentials {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.author-credentials span {
    background: var(--light-blue);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--red);
    border: 1px solid var(--red);
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 15px;
    font-weight: 900;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--off-white);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.subsection-title {
    font-size: 1.8rem;
    color: var(--red);
    margin: 40px 0 25px;
    font-weight: 700;
}

/* Quick Info Grid */
.quick-info {
    background: var(--dark-blue);
    border-top: 2px solid var(--red);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-item {
    background: var(--medium-blue);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 2px solid var(--light-blue);
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: var(--red);
    transform: translateY(-5px);
}

.info-label {
    font-size: 0.9rem;
    color: var(--red-light);
    font-weight: 600;
}

.info-value {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 700;
}

/* Bonus Section */
.bonuses-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--dark-blue) 100%);
}

.bonus-card {
    background: var(--medium-blue);
    border: 2px solid var(--light-blue);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
}

.bonus-card.featured {
    border: 3px solid var(--red);
    box-shadow: 0 10px 40px rgba(227, 30, 36, 0.3);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.bonus-card h3 {
    color: var(--red);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.bonus-card h4 {
    color: var(--red-light);
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.bonus-details {
    margin-top: 20px;
}

.bonus-amount {
    font-size: 2.5rem;
    color: var(--red);
    font-weight: 900;
    margin-bottom: 10px;
}

.bonus-game {
    color: var(--off-white);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.bonus-terms {
    background: var(--dark-blue);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.term {
    color: var(--off-white);
    font-size: 0.95rem;
}

.term strong {
    color: var(--red);
}

.bonus-code-display {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    justify-content: center;
}

.bonus-code-display span {
    font-size: 1.1rem;
    color: var(--off-white);
}

.auto-bonus {
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.code-box.large {
    font-size: 2rem;
    padding: 15px 40px;
}

.claim-steps {
    background: var(--dark-blue);
    padding: 25px 25px 25px 45px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid var(--red);
}

.claim-steps li {
    color: var(--off-white);
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
}

.claim-steps li strong {
    color: var(--red);
}

/* Bonus Table */
.bonus-table {
    overflow-x: auto;
    margin: 30px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--medium-blue);
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
}

thead th {
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
}

tbody tr {
    border-bottom: 1px solid var(--light-blue);
}

tbody tr:hover {
    background: var(--light-blue);
}

tbody td {
    padding: 15px;
    color: var(--off-white);
    font-size: 0.95rem;
}

tbody td strong {
    color: var(--red);
}

.code-inline {
    background: var(--red);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 5px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

/* Expert Tip */
.expert-tip {
    background: linear-gradient(135deg, var(--medium-blue) 0%, var(--light-blue) 100%);
    border-left: 5px solid var(--red);
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
}

.expert-tip h4 {
    color: var(--red);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.expert-tip p {
    color: var(--off-white);
    line-height: 1.8;
    font-size: 1rem;
}

.expert-tip strong {
    color: var(--red-light);
}

/* Review Section */
.review-section {
    background: var(--dark-blue);
}

.rating-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: var(--medium-blue);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 2px solid var(--red);
}

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

.rating-number {
    font-size: 5rem;
    color: var(--red);
    font-weight: 900;
    line-height: 1;
}

.stars {
    font-size: 2rem;
    color: var(--red);
    margin: 10px 0;
}

.overall-rating p {
    color: var(--off-white);
    font-size: 1rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rating-item {
    display: grid;
    grid-template-columns: 150px 1fr 60px;
    align-items: center;
    gap: 15px;
}

.rating-item span {
    color: var(--off-white);
    font-size: 0.95rem;
}

.rating-bar {
    background: var(--dark-blue);
    height: 12px;
    border-radius: 10px;
    overflow: hidden;
}

.rating-fill {
    background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 100%);
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.rating-score {
    color: var(--red);
    font-weight: 700;
    text-align: right;
}

/* Review Content */
.review-content {
    max-width: 900px;
    margin: 0 auto;
}

.review-content h3 {
    color: var(--red);
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.review-content p {
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.review-content h4 {
    color: var(--red-light);
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.review-content ul {
    margin: 20px 0 20px 30px;
}

.review-content li {
    color: var(--off-white);
    margin-bottom: 12px;
    line-height: 1.7;
}

.review-content li strong {
    color: var(--red);
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.pros, .cons {
    background: var(--medium-blue);
    padding: 30px;
    border-radius: 15px;
}

.pros {
    border: 2px solid #2ECC71;
}

.cons {
    border: 2px solid var(--red);
}

.pros h4 {
    color: #2ECC71;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cons h4 {
    color: var(--red);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pros ul, .cons ul {
    margin-left: 0;
    list-style: none;
}

.pros li, .cons li {
    padding-left: 0;
    margin-bottom: 15px;
}

/* Info Box */
.info-box {
    background: var(--medium-blue);
    border: 2px solid var(--red);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.info-box h4 {
    color: var(--red);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-box ul {
    margin-left: 30px;
}

.info-box li {
    margin-bottom: 10px;
}

.note {
    background: var(--medium-blue);
    border-left: 4px solid var(--red);
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 5px;
}

.note strong {
    color: var(--red);
}

/* Games Section */
.games-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy-dark) 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.game-category {
    background: var(--medium-blue);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--light-blue);
    transition: all 0.3s ease;
}

.game-category:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.game-category h3 {
    color: var(--red);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.game-count {
    color: var(--red-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.game-category ul {
    list-style: none;
    margin: 0;
}

.game-category li {
    color: var(--off-white);
    padding: 8px 0;
    font-size: 0.95rem;
}

/* Popular Games */
.popular-games {
    margin-top: 50px;
}

.game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.game-item {
    background: var(--medium-blue);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid var(--light-blue);
    transition: all 0.3s ease;
}

.game-item:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}

.game-item h4 {
    color: var(--red);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.game-item p {
    color: var(--off-white);
    margin-bottom: 15px;
    line-height: 1.6;
}

.game-rtp {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Payment Section */
.payment-section {
    background: var(--dark-blue);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.payment-method {
    background: var(--medium-blue);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--light-blue);
}

.payment-method h3 {
    color: var(--red);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.payment-method p {
    color: var(--off-white);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.payment-method strong {
    color: var(--red-light);
}

.withdrawal-info {
    margin-top: 50px;
}

.withdrawal-table {
    margin: 30px 0;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--dark-blue) 100%);
}

.reviews-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: var(--medium-blue);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 2px solid var(--red);
}

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

.rating-number-large {
    font-size: 6rem;
    color: var(--red);
    font-weight: 900;
    line-height: 1;
}

.stars-large {
    font-size: 2.5rem;
    color: var(--red);
    margin: 15px 0;
}

.summary-rating p {
    color: var(--off-white);
    font-size: 0.95rem;
}

.summary-distribution {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dist-row {
    display: grid;
    grid-template-columns: 80px 1fr 60px;
    align-items: center;
    gap: 15px;
}

.dist-row span {
    color: var(--off-white);
    font-size: 0.9rem;
}

.dist-bar {
    background: var(--dark-blue);
    height: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.dist-bar div {
    background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 100%);
    height: 100%;
    border-radius: 10px;
}

/* Review Cards */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-card {
    background: var(--medium-blue);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--light-blue);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--white);
    font-size: 1.3rem;
}

.reviewer-info h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.reviewer-location {
    color: var(--red-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.review-stars {
    color: var(--red);
    font-size: 1.1rem;
}

.review-date {
    color: var(--off-white);
    font-size: 0.85rem;
}

.review-title {
    color: var(--red);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.review-text {
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 20px;
}

.review-helpful {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--light-blue);
    font-size: 0.85rem;
}

.review-helpful span:first-child {
    color: var(--red);
    font-weight: 600;
}

.review-helpful span:last-child {
    color: var(--off-white);
}

.expert-response {
    background: var(--medium-blue);
    border: 3px solid var(--red);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.expert-response h3 {
    color: var(--red);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.expert-response p {
    color: var(--off-white);
    line-height: 1.8;
    font-size: 1.05rem;
}

.expert-response strong {
    color: var(--red-light);
}

/* FAQ Section */
.faq-section {
    background: var(--dark-blue);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--medium-blue);
    border: 2px solid var(--light-blue);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--red);
}

.faq-question {
    color: var(--red);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-answer {
    color: var(--off-white);
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer ul, .faq-answer ol {
    margin: 15px 0 15px 30px;
}

.faq-answer li {
    margin-bottom: 10px;
}

.faq-answer strong {
    color: var(--red-light);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy) 100%);
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 15px;
}

.final-cta > p {
    font-size: 1.2rem;
    color: var(--off-white);
    margin-bottom: 50px;
}

.final-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.final-offer {
    background: var(--medium-blue);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--light-blue);
    position: relative;
}

.final-offer.highlight {
    border: 3px solid var(--red);
    box-shadow: 0 10px 40px rgba(227, 30, 36, 0.3);
}

.best-offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.final-offer h3 {
    color: var(--red);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.offer-big {
    font-size: 2.2rem;
    color: var(--red);
    font-weight: 900;
    margin-bottom: 10px;
}

.final-offer p {
    color: var(--off-white);
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Responsible Gaming */
.responsible-gaming {
    background: var(--medium-blue);
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid var(--red);
}

.responsible-gaming h3 {
    color: var(--red);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.responsible-gaming > p {
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
}

.help-resources {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.help-resources a {
    background: var(--red);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.help-resources a:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--navy);
    padding: 50px 0 30px;
    border-top: 3px solid var(--red);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--red);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--off-white);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--off-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--red);
}

.footer-bottom {
    border-top: 1px solid var(--light-blue);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--off-white);
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.disclaimer {
    color: var(--red-light) !important;
    font-style: italic;
}

.legal {
    font-size: 0.8rem !important;
    color: #888 !important;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .bonus-highlight h3 {
        font-size: 2.2rem;
    }

    .rating-overview,
    .reviews-summary {
        grid-template-columns: 1fr;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .bonus-highlight {
        padding: 25px;
    }

    .bonus-highlight h3 {
        font-size: 1.8rem;
    }

    .code-box {
        font-size: 1.2rem;
        padding: 10px 20px;
    }

    .no-deposit-box {
        flex-direction: column;
        text-align: center;
    }

    .big-text {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .quick-facts {
        flex-direction: column;
        align-items: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .final-offers {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    table {
        font-size: 0.85rem;
    }

    thead th,
    tbody td {
        padding: 10px 8px;
    }

    .rating-item {
        grid-template-columns: 120px 1fr 50px;
        font-size: 0.85rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--red);
    color: var(--white);
}

/* Focus Styles */
a:focus,
button:focus {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Print Styles */
@media print {
    .warning-banner,
    .header,
    .cta-buttons,
    .final-cta,
    .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}