/* Lamabet Casino - Main Stylesheet */
/* Black and Red Theme for Italian Market */

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --dark-gray: #2d2d2d;
    --primary-red: #e60012;
    --secondary-red: #ff1a2e;
    --accent-gold: #ffd700;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --success-green: #00c853;
    --warning-orange: #ff9100;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: linear-gradient(180deg, var(--secondary-black) 0%, var(--primary-black) 100%);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(230, 0, 18, 0.3);
    border-bottom: 2px solid var(--primary-red);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--primary-red);
}

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

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

/* Button Styles */
.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(230, 0, 18, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 0, 18, 0.6);
}

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

.btn-secondary:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 0, 18, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(230, 0, 18, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 0, 18, 0); }
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-black) 50%, #1f0002 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(230, 0, 18, 0.1) 0%, transparent 50%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content h1 span {
    color: var(--primary-red);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(230, 0, 18, 0.3);
}

/* Winning Ticker */
.winning-ticker {
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

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

.ticker-item {
    padding: 0 40px;
    font-weight: 700;
    font-size: 14px;
}

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

/* Section Styles */
.section {
    padding: 80px 20px;
}

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

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.section-title span {
    color: var(--primary-red);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-top: -40px;
    margin-bottom: 50px;
    font-size: 16px;
}

/* Content Block */
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

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

.content-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 16px;
}

.content-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--secondary-black);
    border-radius: 10px;
    overflow: hidden;
}

.data-table th {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    padding: 15px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid var(--dark-gray);
    color: var(--text-gray);
}

.data-table tr:hover td {
    background: rgba(230, 0, 18, 0.1);
    color: var(--text-white);
}

/* Slots Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.slot-card {
    background: var(--secondary-black);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--dark-gray);
}

.slot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 0, 18, 0.2);
    border-color: var(--primary-red);
}

.slot-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.slot-info {
    padding: 20px;
}

.slot-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.slot-info p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.slot-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-red);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slot-btn:hover {
    background: var(--secondary-red);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--secondary-black);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--dark-gray);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(230, 0, 18, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Footer */
.footer {
    background: var(--secondary-black);
    padding: 60px 20px 30px;
    border-top: 2px solid var(--primary-red);
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-red);
    text-transform: uppercase;
}

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

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

.footer-column a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a {
    color: var(--text-white);
    text-decoration: none;
}

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

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
}

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

.responsible-links a {
    color: var(--text-gray);
    font-size: 14px;
}

/* Form Styles */
.form-container {
    background: var(--secondary-black);
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid var(--dark-gray);
}

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

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

.form-group input {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--dark-gray);
    background: var(--primary-black);
    color: var(--text-white);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-red);
}

/* Bonus Banner */
.bonus-banner {
    background: linear-gradient(135deg, var(--primary-red) 0%, #8b0000 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.bonus-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.bonus-banner h3 {
    font-size: 32px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.bonus-banner p {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

/* Steps List */
.steps-list {
    counter-reset: step;
    list-style: none;
}

.steps-list li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 25px;
}

.steps-list li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.steps-list h4 {
    color: var(--primary-red);
    margin-bottom: 8px;
}

.steps-list p {
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-black);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 2px solid var(--primary-red);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .content-block {
        grid-template-columns: 1fr;
    }
    
    .content-block.reverse {
        direction: ltr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .section {
        padding: 50px 15px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-red { color: var(--primary-red); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none; }

/* Anchor Navigation */
.anchor-nav {
    background: var(--secondary-black);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    border: 1px solid var(--dark-gray);
}

.anchor-nav h4 {
    margin-bottom: 15px;
    color: var(--primary-red);
}

.anchor-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.anchor-nav a {
    color: var(--text-gray);
    text-decoration: none;
    padding: 8px 15px;
    background: var(--dark-gray);
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.anchor-nav a:hover {
    background: var(--primary-red);
    color: var(--text-white);
}

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

.article-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-red);
}

.article-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-white);
}

.article-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.article-content ul, .article-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.article-content li {
    color: var(--text-gray);
    margin-bottom: 10px;
}
