/* Indwin Casino - Brown & Gold Theme */
:root {
    --primary-brown: #3D2314;
    --dark-brown: #2A1810;
    --light-brown: #5D3A28;
    --primary-gold: #D4AF37;
    --dark-gold: #B8941F;
    --light-gold: #F4D03F;
    --accent-yellow: #FFD700;
    --text-light: #FFFFFF;
    --text-gold: #F4D03F;
    --bg-dark: #1A0F0A;
    --bg-card: #2A1810;
    --border-gold: #D4AF37;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-brown) 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header & Navigation */
header {
    background: linear-gradient(180deg, var(--dark-brown) 0%, var(--primary-brown) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border-bottom: 2px solid var(--primary-gold);
}

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

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 50%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.logo span {
    color: var(--accent-yellow);
    -webkit-text-fill-color: var(--accent-yellow);
}

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

nav a {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

nav a:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

/* Pulsing Play Button */
.pulse-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: var(--dark-brown);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
    border: 2px solid var(--light-gold);
}

.pulse-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Hero Section with Rotating Banner */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-brown) 50%, var(--dark-brown) 100%);
}

.hero-banner {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-rotate {
    width: 300px;
    animation: phoneRotate 8s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

@keyframes phoneRotate {
    0%, 100% { transform: rotateY(-15deg) rotateX(5deg); }
    50% { transform: rotateY(15deg) rotateX(-5deg); }
}

/* Live Winnings Ticker */
.winnings-ticker {
    background: linear-gradient(90deg, var(--dark-brown) 0%, var(--light-brown) 50%, var(--dark-brown) 100%);
    padding: 15px 0;
    border-top: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: tickerScroll 20s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 40px;
    font-size: 1.1rem;
}

.ticker-item .amount {
    color: var(--accent-yellow);
    font-weight: bold;
    font-size: 1.3rem;
    margin-left: 10px;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Slots Grid Section */
.slots-section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.slot-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--light-brown) 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.slot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.slot-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.slot-card .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.slot-card:hover .play-overlay {
    opacity: 1;
}

.slot-card h3 {
    padding: 15px;
    text-align: center;
    color: var(--primary-gold);
    font-size: 1rem;
}

/* User Growth Chart */
.chart-section {
    background: var(--bg-card);
    padding: 60px 20px;
    border-top: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
}

.chart-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-brown) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
}

.chart-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 300px;
    padding: 20px 0;
    gap: 15px;
}

.chart-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.chart-bar-fill {
    width: 100%;
    background: linear-gradient(180deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    border-radius: 10px 10px 0 0;
    transition: all 0.5s ease;
    position: relative;
}

.chart-bar-fill::after {
    content: attr(data-value);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-yellow);
    font-weight: bold;
    font-size: 0.9rem;
}

.chart-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Content Sections */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-gold);
}

.content-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.content-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

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

.feature-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--light-brown) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

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

.feature-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* FAQ Schema Section */
.faq-section {
    background: var(--bg-card);
    padding: 60px 20px;
    border-top: 2px solid var(--primary-gold);
}

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

.faq-item {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-brown) 100%);
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--primary-gold);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: var(--primary-gold);
}

.faq-answer {
    padding: 0 20px 20px;
    color: rgba(255,255,255,0.9);
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--dark-brown) 0%, var(--bg-dark) 100%);
    padding: 60px 20px 30px;
    border-top: 3px solid var(--primary-gold);
}

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

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

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.footer-links a {
    color: var(--primary-gold);
    text-decoration: none;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info a:hover {
    color: var(--primary-gold);
}

.copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .phone-rotate {
        width: 250px;
    }
}

@media (max-width: 600px) {
    .logo {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .chart-bar {
        height: 200px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.pt-40 { padding-top: 40px; }
.pb-40 { padding-bottom: 40px; }

/* Button Container */
.btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}
