/* UAE Casino Website - Burj Khalifa Luxury Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --burj-gold: #D4AF37;
    --dubai-navy: #001F3F;
    --emirates-red: #C41E3A;
    --desert-sand: #EDC9AF;
    --pearl-white: #F8F8FF;
    --midnight-blue: #000814;
    --royal-gold: #FFD700;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--dubai-navy) 100%);
    background-attachment: fixed;
    color: var(--pearl-white);
    line-height: 1.6;
    direction: ltr;
}

/* Las Vegas Strip Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1514565131-fce0801e5785?w=1920') center/cover no-repeat fixed;
    opacity: 0.15;
    z-index: -1;
}

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

/* Header with Burj Khalifa Style */
header {
    background: linear-gradient(to right, rgba(0, 31, 63, 0.95), rgba(196, 30, 58, 0.85));
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--burj-gold);
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.8s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo-ar {
    font-size: 22px;
    font-weight: bold;
    color: var(--royal-gold);
    text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.8);
    letter-spacing: 2px;
}

.logo a {
    font-size: 18px;
    font-weight: 600;
    color: var(--pearl-white);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.logo a:hover {
    color: var(--burj-gold);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

nav ul li a {
    color: var(--pearl-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

nav ul li a:hover {
    background: var(--burj-gold);
    color: var(--midnight-blue);
    border-color: var(--royal-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

/* Hero Section - Burj Khalifa Inspired */
.hero {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.9), rgba(0, 31, 63, 0.9));
    padding: 80px 20px;
    text-align: center;
    border-bottom: 4px solid var(--burj-gold);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(212, 175, 55, 0.05) 10px,
        rgba(212, 175, 55, 0.05) 20px
    );
    animation: shimmer 20s linear infinite;
}

@keyframes shimmer {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50%, 50%); }
}

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

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--royal-gold);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--pearl-white);
    font-weight: 500;
}

.hero-ar {
    font-size: 24px;
    color: var(--burj-gold);
    font-weight: bold;
    direction: rtl;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Casino Cards - UAE Luxury Style */
.casinos-section {
    padding: 60px 20px;
    background: rgba(0, 8, 20, 0.7);
    backdrop-filter: blur(5px);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--royal-gold);
    text-shadow: 2px 2px 10px rgba(212, 175, 55, 0.6);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--burj-gold), transparent);
}

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

.casino-card {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.95), rgba(0, 8, 20, 0.95));
    border: 2px solid var(--burj-gold);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.2));
    transition: top 0.5s;
}

.casino-card:hover::before {
    top: 0;
}

.casino-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--royal-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
}

.casino-name {
    font-size: 28px;
    color: var(--royal-gold);
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.casino-bonus {
    background: linear-gradient(135deg, var(--emirates-red), #8B0000);
    color: var(--pearl-white);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 16px;
    border: 2px solid var(--burj-gold);
    line-height: 1.4;
}

.casino-features {
    list-style: none;
    text-align: right;
    margin: 20px 0;
    direction: rtl;
}

.casino-features li {
    padding: 10px;
    margin: 8px 0;
    background: rgba(212, 175, 55, 0.1);
    border-right: 3px solid var(--burj-gold);
    border-radius: 5px;
    transition: all 0.3s;
}

.casino-features li:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(-5px);
}

.casino-features li::before {
    content: '◆ ';
    color: var(--burj-gold);
    margin-left: 8px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--burj-gold), var(--royal-gold));
    color: var(--midnight-blue);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    margin-top: 15px;
    transition: all 0.3s;
    border: 2px solid var(--royal-gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.7);
}

/* Blog Section */
.blog-section {
    padding: 60px 20px;
    background: rgba(0, 31, 63, 0.6);
}

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

.blog-card {
    background: linear-gradient(135deg, rgba(0, 8, 20, 0.9), rgba(0, 31, 63, 0.9));
    border: 2px solid var(--desert-sand);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s;
}

.blog-card:hover {
    border-color: var(--burj-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.blog-title {
    font-size: 22px;
    color: var(--burj-gold);
    margin-bottom: 10px;
}

.blog-meta {
    color: var(--desert-sand);
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-excerpt {
    color: var(--pearl-white);
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: var(--royal-gold);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.read-more:hover {
    color: var(--burj-gold);
    text-decoration: underline;
}

/* Forms Section */
.forms-section {
    padding: 60px 20px;
    background: rgba(196, 30, 58, 0.2);
}

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

.form-box {
    background: rgba(0, 31, 63, 0.9);
    border: 2px solid var(--burj-gold);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.form-title {
    font-size: 24px;
    color: var(--royal-gold);
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--pearl-white);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--desert-sand);
    border-radius: 8px;
    background: rgba(248, 248, 255, 0.1);
    color: var(--pearl-white);
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burj-gold);
    background: rgba(248, 248, 255, 0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-box button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--burj-gold), var(--royal-gold));
    color: var(--midnight-blue);
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.form-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* Footer */
footer {
    background: linear-gradient(to right, rgba(0, 8, 20, 0.95), rgba(0, 31, 63, 0.95));
    border-top: 3px solid var(--burj-gold);
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--pearl-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 5px;
}

.footer-links a:hover {
    color: var(--burj-gold);
    background: rgba(212, 175, 55, 0.1);
}

.copyright {
    color: var(--desert-sand);
    margin: 15px 0;
    font-size: 14px;
}

.copyright-ar {
    color: var(--burj-gold);
    font-weight: bold;
    direction: rtl;
    font-size: 16px;
}

/* Blog Post Page Styles */
.post-content {
    padding: 60px 20px;
    background: rgba(0, 8, 20, 0.8);
    min-height: 100vh;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--burj-gold);
}

.post-title {
    font-size: 42px;
    color: var(--royal-gold);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.post-body {
    background: rgba(0, 31, 63, 0.6);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--desert-sand);
    line-height: 1.8;
    font-size: 17px;
}

.post-body h2 {
    color: var(--burj-gold);
    font-size: 32px;
    margin: 30px 0 20px;
}

.post-body h3 {
    color: var(--royal-gold);
    font-size: 24px;
    margin: 25px 0 15px;
}

.post-body p {
    margin-bottom: 20px;
    color: var(--pearl-white);
}

.post-body a {
    color: var(--burj-gold);
    text-decoration: none;
    border-bottom: 1px solid var(--burj-gold);
    transition: all 0.3s;
}

.post-body a:hover {
    color: var(--royal-gold);
    border-bottom-color: var(--royal-gold);
}

.post-body ul, .post-body ol {
    margin: 20px 0 20px 30px;
}

.post-body li {
    margin-bottom: 10px;
}

/* Comments Section */
.comments-section {
    margin-top: 50px;
    padding: 30px;
    background: rgba(0, 31, 63, 0.5);
    border-radius: 12px;
    border: 2px solid var(--desert-sand);
}

.comments-title {
    font-size: 28px;
    color: var(--burj-gold);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.comment {
    background: rgba(0, 8, 20, 0.6);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--burj-gold);
}

.comment-author {
    color: var(--royal-gold);
    font-weight: bold;
    margin-bottom: 5px;
}

.comment-date {
    color: var(--desert-sand);
    font-size: 13px;
    margin-bottom: 10px;
}

.comment-text {
    color: var(--pearl-white);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-ar {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .post-title {
        font-size: 28px;
    }
    
    .post-body {
        padding: 20px;
    }
}
