* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.site-header {
    width: 100%;
    background: linear-gradient(to bottom, #58331c, #2e1d0f);
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav .nav-link {
    color: #d5a87f;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.main-nav .nav-link:hover {
    color: #fff;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    display: block;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.coin-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.coin-icon img {
    width: 24px;
    height: 24px;
}

.btn {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.login-btn {
    border: 2px solid #d5a87f;
    background-color: transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.login-btn:hover {
    background-color: rgba(213, 168, 127, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.join-btn {
    background: linear-gradient(to bottom, #d5a87f, #b28054);
    border: 2px solid #b28054;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.join-btn:hover {
    background: linear-gradient(to bottom, #e3b78e, #c18e5f);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .logo {
        position: relative;
        left: auto;
        transform: none;
    }
    
    .header-container {
        justify-content: space-between;
    }
}

.hero {
    background: url('img/bg-image.webp') no-repeat center center;
    background-size: cover;
    padding: 60px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #f9c654;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.bonus-container {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
}

.bonus-container span {
    color: #f9a825;
    font-size: 28px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.bonus-offer {
    margin-bottom: 25px;
}

.bonus-amount {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 5px;
}

.bonus-extras {
    font-size: 28px;
    margin-bottom: 25px;
}

.play-now-btn {
    background: linear-gradient(to bottom, #22c7ba, #16867e);
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 15px 60px;
    border-radius: 30px;
    display: inline-block;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}

.play-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 30px;
}

.play-now-btn:hover {
    background: linear-gradient(to bottom, #16867e, #22c7ba);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    animation: none;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .bonus-amount {
        font-size: 32px;
    }
    
    .bonus-extras {
        font-size: 22px;
    }
}

.info-section {
    background-color: #5f3b39;
    padding: 60px 20px;
    color: #fff;
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.info-title {
    color: #f9c654;
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid #d5a87f;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.info-label {
    color: #d5a87f;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 18px;
}

.info-value {
    font-size: 16px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .logo {
        position: relative;
        left: auto;
        transform: none;
    }
    
    .header-container {
        justify-content: space-between;
    }

    .hero h1 {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .bonus-amount {
        font-size: 32px;
    }
    
    .bonus-extras {
        font-size: 22px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

.games-section {
    background-color: #2e1d0f;
    background-image: linear-gradient(rgba(46, 29, 15, 0.95), rgba(46, 29, 15, 0.95)), url('img/bg-image.webp');
    background-blend-mode: overlay;
    background-size: cover;
    padding: 70px 20px;
    color: #fff;
}

.games-container {
    max-width: 1100px;
    margin: 0 auto;
}

.games-title {
    color: #f9c654;
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
}

.games-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #d5a87f;
    margin: 15px auto 0;
    border-radius: 2px;
}

.games-intro {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    gap: 40px;
}

.games-text {
    flex: 1;
}

.games-image {
    flex: 1;
    position: relative;
}

.games-showcase {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.games-showcase:hover {
    transform: scale(1.02);
}

.games-category {
    margin-bottom: 50px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-title {
    color: #d5a87f;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #f9c654;
    border-radius: 50%;
}

.games-category p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #e6e6e6;
}

.live-casino {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
    padding: 0;
    background: none;
    box-shadow: none;
}

.live-casino-content {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.live-casino-image {
    flex: 1;
}

.live-casino-showcase {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.live-casino-showcase:hover {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .games-intro {
        flex-direction: column;
    }
    
    .live-casino {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .games-title {
        font-size: 28px;
    }
    
    .category-title {
        font-size: 22px;
    }
    
    .games-category {
        padding: 20px;
    }
    
    .live-casino-content {
        padding: 20px;
    }
}

.sports-section {
    background-color: #422f29;
    padding: 70px 20px;
    color: #fff;
}

.sports-container {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.sports-title {
    color: #f9c654;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
}

.sports-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #d5a87f;
    margin: 15px auto 0;
    border-radius: 2px;
}

.sports-container p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #e6e6e6;
}

.promo-banner {
    position: relative;
    height: 400px;
    background: url('img/banner1.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    max-width: 800px;
    padding: 30px;
    z-index: 2;
}

.banner-title {
    color: #f9c654;
    font-size: 36px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-text {
    color: #fff;
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.banner-cta {
    background: linear-gradient(to bottom, #d5a87f, #b28054);
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 15px 40px;
    border-radius: 30px;
    display: inline-block;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.banner-cta:hover {
    background: linear-gradient(to bottom, #e3b78e, #c18e5f);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.register-section {
    background: linear-gradient(to bottom, #2e1d0f, #422f29);
    padding: 70px 20px;
    color: #fff;
}

.register-container {
    max-width: 1100px;
    margin: 0 auto;
}

.register-title {
    color: #f9c654;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
}

.register-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #d5a87f;
    margin: 15px auto 0;
    border-radius: 2px;
}

.register-container > p {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.register-guide, .login-guide {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.guide-subtitle {
    color: #d5a87f;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(213, 168, 127, 0.3);
    padding-bottom: 10px;
}

.guide-steps {
    padding-top: 10px;
    padding-left: 25px;
}

.guide-steps li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.guide-steps strong {
    color: #f9c654;
}

@media (max-width: 768px) {
    .sports-container {
        padding: 25px;
    }
    
    .sports-title, .register-title {
        font-size: 26px;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .banner-text {
        font-size: 20px;
    }
    
    .guide-subtitle {
        font-size: 20px;
    }
    
    .guide-steps li {
        font-size: 15px;
    }
}

.bonuses-section {
    background-color: #2e1d0f;
    background-image: linear-gradient(rgba(46, 29, 15, 0.97), rgba(46, 29, 15, 0.97)), url('img/bg-image.webp');
    background-blend-mode: overlay;
    background-size: cover;
    padding: 70px 20px;
    color: #fff;
}

.bonuses-container {
    max-width: 1100px;
    margin: 0 auto;
}

.bonuses-title {
    color: #f9c654;
    font-size: 32px;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
}

.bonuses-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #d5a87f;
    margin: 15px auto 0;
    border-radius: 2px;
}

.bonuses-intro, .bonuses-conclusion {
    margin-bottom: 30px;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bonuses-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 30px;
}

.bonuses-table {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.promotions-table {
    width: 100%;
    border-collapse: collapse;
}

.promotions-table th, .promotions-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(213, 168, 127, 0.2);
}

.promotions-table th {
    color: #f9c654;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
}

.promotions-table td {
    font-size: 15px;
}

.promotions-table tr:last-child td {
    border-bottom: none;
}

.promotions-table tr:hover td {
    background-color: rgba(0, 0, 0, 0.1);
}

.bonuses-images {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.bonus-image {
    flex: 1;
    max-width: calc(50% - 10px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.bonus-image:hover {
    transform: translateY(-5px);
}

.bonus-img {
    width: 100%;
    height: auto;
    display: block;
}

.vip-section {
    background: linear-gradient(to right, #3d2915, #5f3b39, #3d2915);
    padding: 70px 20px;
    color: #fff;
}

.vip-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.vip-content {
    flex: 2;
}

.vip-title {
    color: #f9c654;
    font-size: 32px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
}

.vip-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #d5a87f;
    margin: 15px 0 0;
    border-radius: 2px;
}

.vip-intro {
    margin-bottom: 30px;
    line-height: 1.7;
}

.vip-levels {
    list-style-type: none;
    padding: 0;
}

.vip-level {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    line-height: 1.7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid rgba(213, 168, 127, 0.6);
}

.vip-level:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left-color: #f9c654;
}

.level-number {
    color: #f9c654;
    font-weight: bold;
    margin-right: 5px;
}

.vip-image {
    flex: 1;
    text-align: center;
}

.vip-badge {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(249, 198, 84, 0.3);
    animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(249, 198, 84, 0.3);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 40px rgba(249, 198, 84, 0.5);
    }
}

@media (max-width: 992px) {
    .vip-container {
        flex-direction: column;
    }
    
    .vip-title, .bonuses-title {
        text-align: center;
    }
    
    .vip-title::after {
        margin: 15px auto 0;
    }
    
    .promotions-table {
        font-size: 14px;
    }
    
    .promotions-table th, .promotions-table td {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .bonuses-images {
        flex-direction: column;
    }
    
    .bonus-image {
        max-width: 100%;
    }
    
    .promotions-table {
        display: block;
        overflow-x: auto;
    }
    
    .bonuses-title, .vip-title {
        font-size: 26px;
    }
    
    .promotions-table th {
        font-size: 16px;
    }
}

.payment-section {
    background-color: #2e1d0f;
    background-image: linear-gradient(rgba(46, 29, 15, 0.97), rgba(46, 29, 15, 0.97)), url('img/bg-image.webp');
    background-blend-mode: overlay;
    background-size: cover;
    padding: 70px 20px;
    color: #fff;
}

.payment-container {
    max-width: 1100px;
    margin: 0 auto;
}

.payment-title {
    color: #f9c654;
    font-size: 32px;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
}

.payment-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #d5a87f;
    margin: 15px auto 0;
    border-radius: 2px;
}

.payment-intro {
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.payment-table-wrapper {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow-x: auto;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.payment-table th, .payment-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(213, 168, 127, 0.2);
}

.payment-table th {
    color: #f9c654;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.2);
}

.payment-table td {
    font-size: 15px;
}

.payment-table tr:last-child td {
    border-bottom: none;
}

.payment-table tr:hover td {
    background-color: rgba(0, 0, 0, 0.1);
}

.pros-cons-section {
    background: linear-gradient(to right, #3d2915, #5f3b39, #3d2915);
    padding: 70px 20px;
    color: #fff;
}

.pros-cons-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pros-cons-title {
    color: #f9c654;
    font-size: 32px;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
}

.pros-cons-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #d5a87f;
    margin: 15px auto 0;
    border-radius: 2px;
}

.pros-cons-intro {
    margin-bottom: 40px;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pros-container, .cons-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pros-title, .cons-title {
    margin-bottom: 20px;
    font-size: 24px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(213, 168, 127, 0.3);
}

.pros-title {
    color: #4ecdc4;
}

.cons-title {
    color: #e57373;
}

.pros-list, .cons-list {
    list-style-type: none;
    padding: 0;
}

.pros-list li, .cons-list li {
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
}

.pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
}

.cons-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #e57373;
}

.list-highlight {
    font-weight: bold;
    color: #f9c654;
}

@media (max-width: 992px) {
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-table th, .payment-table td {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .payment-title, .pros-cons-title {
        font-size: 26px;
    }
    
    .pros-title, .cons-title {
        font-size: 22px;
    }
    
    .payment-table-wrapper {
        padding: 15px;
    }
}

.reviews-section {
    background-color: #2e1d0f;
    background-image: linear-gradient(rgba(46, 29, 15, 0.97), rgba(46, 29, 15, 0.97)), url('img/bg-image.webp');
    background-blend-mode: overlay;
    background-size: cover;
    padding: 70px 20px;
    color: #fff;
}

.reviews-container {
    max-width: 1100px;
    margin: 0 auto;
}

.reviews-title {
    color: #f9c654;
    font-size: 32px;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
}

.reviews-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #d5a87f;
    margin: 15px auto 0;
    border-radius: 2px;
}

.reviews-intro {
    margin-bottom: 40px;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border-left: 3px solid #d5a87f;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    border-left-color: #f9c654;
}

.review-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.review-text {
    flex-grow: 1;
    margin-bottom: 20px;
    line-height: 1.8;
    font-style: italic;
    position: relative;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: -15px;
    top: -10px;
    font-size: 40px;
    color: rgba(213, 168, 127, 0.3);
    font-family: serif;
}

.reviewer {
    text-align: right;
    font-weight: bold;
    color: #f9c654;
}

.reviewer::before {
    content: '— ';
}

.faq-section {
    background: linear-gradient(to right, #3d2915, #5f3b39, #3d2915);
    padding: 70px 20px;
    color: #fff;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-title {
    color: #f9c654;
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
}

.faq-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #d5a87f;
    margin: 15px auto 0;
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    font-weight: bold;
    color: #f9c654;
    border-bottom: 1px solid rgba(213, 168, 127, 0.3);
    position: relative;
    padding-left: 35px;
}

.faq-question::before {
    content: 'Q:';
    position: absolute;
    left: 15px;
    top: 15px;
    color: #d5a87f;
}

.faq-answer {
    padding: 15px 20px;
    line-height: 1.7;
    position: relative;
    padding-left: 35px;
}

.faq-answer::before {
    content: 'A:';
    position: absolute;
    left: 15px;
    top: 15px;
    color: #d5a87f;
}

.site-footer {
    background-color: #1c130b;
    padding: 30px 20px;
    color: #aaa;
    text-align: center;
    border-top: 1px solid rgba(213, 168, 127, 0.3);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-disclaimer {
    font-size: 14px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-title, .faq-title {
        font-size: 26px;
    }
    
    .faq-answer {
        font-size: 15px;
    }
} 