/*
Theme Name: Casino Landing Theme
Description: Проста тема для лендінгів онлайн казино
Version: 1.0
Author: Your Name
*/

/* Reset та базові стилі */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Заголовок */
.site-header {
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.site-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #1a1a2e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Навігація */
.main-navigation {
    background: rgba(26, 26, 46, 0.9);
    padding: 15px 0;
    margin-top: 20px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.main-navigation a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.main-navigation a:hover {
    background: #ffd700;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Основний контент */
.main-content {
    padding: 40px 0;
    min-height: 60vh;
}

.hero-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border-radius: 20px;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ff6b35, #ffd700);
}

.btn-play {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    margin-right: 20px;
}

.btn-bonus {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
}

/* Секції контенту */
.content-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.section-title {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

.section-content {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Слайдер */
.slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 40px 0;
}

.slider-content {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    text-align: center;
}

.slide-title {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.slide-text {
    color: #fff;
    font-size: 1.1rem;
}

/* Форма */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ffd700;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Футер */
.site-footer {
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 3px solid #ffd700;
}

.footer-content {
    color: #ccc;
}

/* Анімації */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
}

.glow-effect {
    animation: glow 2s ease-in-out infinite alternate;
}

/* Адаптивність */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
    
    .content-section {
        padding: 25px;
    }
    
    .hero-section {
        padding: 40px 20px;
    }
}

/* WordPress специфічні стилі */
.wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.wp-block-quote {
    border-left: 4px solid #ffd700;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #fff;
}

.wp-block-button .wp-block-button__link {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #1a1a2e;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.wp-block-button .wp-block-button__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
} 