:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a2e;
    --accent-color: #c9302c;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #0f0f1e;
    --bg-gradient: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-dark);
}

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

/* Header */
.header {
    background: var(--secondary-color);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo a {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

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

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--secondary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: var(--bg-gradient);
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23d4af37" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center;
    background-size: cover;
}

.hero .container {
    display: flex;
    align-items: center;
    min-height: 440px;
    gap: 60px;
}

.hero-content {
    flex: 1;
    z-index: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.placeholder-image {
    width: 500px;
    height: 400px;
    background: var(--gold-gradient);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

/* Critical CSS - Above the fold */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Image optimization */
img {
    height: auto;
    max-width: 100%;
}

/* Real Images Styles */
.hero-img, .content-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover, .content-img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.hero-img {
    max-width: 500px;
}

.promo-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.casino-hero::after {
    content: '🎰';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 150px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #1a1a2e;
}

.section-title {
    font-size: 42px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.1);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    opacity: 0.9;
}

/* Content Blocks */
.content-blocks {
    padding: 80px 0;
    background: var(--bg-dark);
}

.content-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.left-right .content-image {
    order: 1;
}

.left-right .content-text {
    order: 2;
}

.right-left .content-image {
    order: 2;
}

.right-left .content-text {
    order: 1;
}

.content-image {
    flex: 1;
}

.content-text {
    flex: 1;
}

.content-text h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.9;
}

.sports-betting::after {
    content: '⚽';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
}

.casino-games::after {
    content: '🎲';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
}

.slot-games::after {
    content: '🎰';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
}

.lottery::after {
    content: '🎱';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
}

/* Promotion Section */
.promotion-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

.promo-card {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.promo-card:hover {
    transform: scale(1.05);
}

.promo-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.promo-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.promo-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Guide Section */
.guide-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.guide-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.guide-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--primary-color);
    z-index: 0;
}

.guide-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.guide-step h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.guide-step p {
    color: var(--text-light);
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.stars {
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
    opacity: 0.9;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--bg-gradient);
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons-center {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 60px 0 20px;
    color: var(--text-light);
}

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

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
    opacity: 0.7;
}

/* Additional placeholder images */
.esports::after {
    content: '🎮';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
}

.card-games::after {
    content: '🃏';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
}

.fishing::after {
    content: '🎣';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.security-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.security-item {
    text-align: center;
}

.security-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.security-item h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.security-item p {
    color: var(--text-light);
    opacity: 0.9;
}

/* Payment Methods */
.payment-methods {
    padding: 80px 0;
    background: var(--bg-dark);
}

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

.payment-item {
    background: rgba(212, 175, 55, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s;
}

.payment-item:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
}

.payment-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.payment-item h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.payment-item p {
    color: var(--text-light);
    opacity: 0.9;
}

/* Statistics */
.statistics {
    padding: 80px 0;
    background: var(--secondary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-light);
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.faq-item h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.6;
}

.bg-secondary {
    background: var(--secondary-color);
}

/* Page Header */
.page-header {
    background: var(--bg-gradient);
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-header .subtitle {
    font-size: 20px;
    color: var(--text-light);
    opacity: 0.9;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.intro-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.9;
}

/* Additional placeholder images */
.history::after {
    content: '📜';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
}

.license::after {
    content: '📋';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
}

.security::after {
    content: '🔐';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
}

.team::after {
    content: '👥';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

.value-card {
    background: rgba(212, 175, 55, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.value-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    opacity: 0.9;
}

/* Achievements Timeline */
.achievements {
    padding: 80px 0;
    background: var(--bg-dark);
}

.achievements-timeline {
    position: relative;
    padding: 20px 0;
}

.achievements-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 1;
    text-align: right;
    padding-right: 40px;
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    padding-left: 40px;
    padding-right: 0;
}

.timeline-content {
    flex: 1;
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    opacity: 0.9;
}

/* Partners */
.partners {
    padding: 80px 0;
    background: var(--secondary-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.partner-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
}

.partner-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.partner-item p {
    color: var(--text-light);
    opacity: 0.9;
}

/* Commitment */
.commitment {
    padding: 80px 0;
    background: var(--bg-dark);
}

.commitment-content {
    display: grid;
    gap: 30px;
}

.commitment-item {
    background: rgba(212, 175, 55, 0.05);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.commitment-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.commitment-item p {
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
}

.nav-menu a.active {
    color: var(--primary-color);
}

/* Additional placeholder images for guide page */
.register::after {
    content: '📝';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
}

.login::after {
    content: '🔑';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
}

.deposit::after {
    content: '💳';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
}

.withdraw::after {
    content: '💰';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
}

.mobile-app::after {
    content: '📱';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
}

/* Guide Overview */
.guide-overview {
    padding: 60px 0;
    background: var(--secondary-color);
}

.guide-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guide-intro h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.guide-intro p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Step List */
.step-list {
    margin: 25px 0;
}

.step-item {
    background: rgba(212, 175, 55, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 3px solid var(--primary-color);
}

.step-item strong {
    color: var(--primary-color);
}

/* Payment Methods */
.payment-methods {
    margin: 20px 0;
}

.method-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.method-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.method-item p {
    color: var(--text-light);
    opacity: 0.9;
}

/* App Features */
.app-features {
    margin: 20px 0;
}

.feature-item {
    color: var(--text-light);
    margin-bottom: 8px;
    opacity: 0.9;
}

.download-steps {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.download-steps h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Tips Section */
.tips-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

.tip-card {
    background: rgba(212, 175, 55, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.tip-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.tip-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.tip-card ul {
    list-style: none;
}

.tip-card li {
    color: var(--text-light);
    margin-bottom: 8px;
    opacity: 0.9;
    padding-left: 20px;
    position: relative;
}

.tip-card li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Alert and Highlight Boxes */
.alert-box, .highlight-box {
    background: rgba(201, 48, 44, 0.1);
    border: 1px solid var(--accent-color);
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.highlight-box {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-color);
}

.alert-box strong, .highlight-box strong {
    color: var(--primary-color);
}

/* Promotion Page Styles */
.hero-promo {
    background: var(--bg-gradient);
    padding: 60px 0;
    text-align: center;
}

.hero-promo-content h2 {
    color: var(--primary-color);
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-promo-content p {
    color: var(--text-light);
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Featured Promos */
.featured-promos {
    padding: 80px 0;
    background: var(--bg-dark);
}

.promo-grid.featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.promo-card.premium {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid var(--primary-color);
    padding: 30px;
    border-radius: 20px;
    position: relative;
}

.promo-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin-bottom: 20px;
}

.promo-value {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.promo-details {
    margin: 20px 0;
}

.detail-item {
    color: var(--text-light);
    margin-bottom: 5px;
    opacity: 0.9;
}

/* Daily Promos */
.daily-promos {
    padding: 80px 0;
    background: var(--secondary-color);
}

.daily-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.day-promo {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.day-promo.active {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
}

.day-promo.weekend {
    background: var(--gold-gradient);
    color: var(--secondary-color);
}

.day-header {
    padding: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.day-header h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.day-theme {
    font-size: 12px;
    opacity: 0.8;
}

.day-content {
    padding: 20px;
}

.day-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.day-content p {
    color: var(--text-light);
    opacity: 0.9;
}

/* VIP Levels */
.loyalty-program {
    padding: 80px 0;
    background: var(--bg-dark);
}

.vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vip-level {
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.vip-level.highlighted {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
}

.level-badge {
    font-size: 50px;
    margin-bottom: 15px;
}

.vip-level h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.level-benefits {
    text-align: left;
    margin-bottom: 20px;
}

.benefit {
    color: var(--text-light);
    margin-bottom: 8px;
    opacity: 0.9;
}

.level-requirement {
    background: rgba(212, 175, 55, 0.2);
    padding: 10px;
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: bold;
}

/* Seasonal Promos */
.seasonal-promos {
    padding: 80px 0;
    background: var(--secondary-color);
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.seasonal-card {
    background: rgba(212, 175, 55, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.seasonal-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.seasonal-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.seasonal-date {
    color: var(--primary-color);
    font-weight: bold;
    margin: 15px 0;
}

/* Contact Page Styles */
.contact-hero {
    padding: 60px 0;
    background: var(--secondary-color);
}

.contact-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-intro h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-intro p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Contact Methods */
.contact-methods {
    padding: 80px 0;
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.contact-card {
    background: rgba(212, 175, 55, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.contact-card.priority {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
}

.contact-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-description {
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-info {
    margin: 20px 0;
    text-align: left;
}

.info-item {
    color: var(--text-light);
    margin-bottom: 8px;
    opacity: 0.9;
}

.phone-number {
    font-weight: bold;
    color: var(--primary-color);
}

/* Social Contact */
.social-contact {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

.social-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.social-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.social-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.social-stats {
    color: var(--primary-color);
    font-weight: bold;
    margin: 15px 0;
}

/* Support Categories */
.support-categories {
    padding: 80px 0;
    background: var(--bg-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.category-card {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

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

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-card ul {
    list-style: none;
}

.category-card li {
    color: var(--text-light);
    margin-bottom: 8px;
    opacity: 0.9;
    padding-left: 15px;
    position: relative;
}

.category-card li::before {
    content: '→';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.form-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0.9;
}

.form-benefits {
    margin: 20px 0;
}

.benefit-item {
    color: var(--text-light);
    margin-bottom: 8px;
    opacity: 0.9;
}

.form-note {
    background: rgba(212, 175, 55, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    text-align: center;
}

.form-note p {
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Office Info */
.office-info {
    padding: 80px 0;
    background: var(--bg-dark);
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.office-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.office-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.office-details p {
    color: var(--text-light);
    margin-bottom: 10px;
    opacity: 0.9;
}

.office-details strong {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .content-block {
        flex-direction: column;
    }
    
    .guide-steps {
        flex-direction: column;
    }
    
    .guide-steps::before {
        display: none;
    }
    
    .cta-buttons-center {
        flex-direction: column;
    }
    
    .hero-img, .content-img {
        height: 250px;
    }
    
    .hero-img {
        max-width: 100%;
    }
    
    .hero-image {
        width: 100%;
    }
    
    .content-image {
        width: 100%;
    }
}