/* CSS стили для финского социального казино */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #1a1a1a;
    --accent-color: #ffd700;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --background-dark: #0d0d0d;
    --background-medium: #1a1a1a;
    --background-light: #2a2a2a;
    --border-color: #333333;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--background-dark);
    border-radius: 15px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease-out;
    border: 2px solid var(--primary-color);
}

@keyframes slideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--accent-color)
    );
    padding: 25px;
    border-radius: 13px 13px 0 0;
    text-align: center;
}

.modal-header h2 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-body {
    padding: 30px 25px;
    text-align: center;
}

.modal-body p {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.modal-body p:last-child {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

.modal-footer {
    padding: 20px 25px 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-footer .btn {
    flex: 1;
    max-width: 150px;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-medium);
    border-top: 2px solid var(--primary-color);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    flex: 1;
    margin-right: 20px;
    font-size: 0.9rem;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Header */
.header {
    background-color: var(--background-medium);
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 50px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: block;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-color);
    background-color: var(--background-light);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--background-light);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--border-color);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(
        135deg,
        var(--background-dark) 0%,
        var(--background-medium) 100%
    );
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.game-character {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--accent-color)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(-50%) translateY(0px);
    }
    50% {
        transform: translateY(-50%) translateY(-20px);
    }
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.game-overview {
    padding: 80px 0;
    background-color: var(--background-medium);
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.overview-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Game Section */
.game-section {
    padding: 80px 0;
    background-color: var(--background-dark);
}

.game-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.game-description p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Slot Machine */
.slot-machine {
    background-color: var(--background-medium);
    border-radius: 20px;
    padding: 30px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.slot-screen {
    background-color: var(--background-dark);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}

.reels {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.reel {
    width: 80px;
    height: 120px;
    background-color: var(--background-light);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.symbol {
    font-size: 2rem;
    margin: 10px 0;
    animation: spin 0.5s ease-in-out;
}

@keyframes spin {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.payline {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--accent-color);
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payline.active {
    opacity: 1;
}

.slot-controls {
    text-align: center;
    margin-bottom: 20px;
}

.bet-controls {
    margin-top: 15px;
}

.bet-controls label {
    margin-right: 10px;
    color: var(--text-secondary);
}

.bet-controls select {
    background-color: var(--background-light);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 5px 10px;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    background-color: var(--background-light);
    padding: 15px;
    border-radius: 10px;
}

.stat {
    text-align: center;
}

.stat .label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stat .value {
    display: block;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background-color: var(--background-medium);
    text-align: center;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--background-light);
    color: var(--text-color);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: var(--text-secondary);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--background-dark);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    background-color: var(--background-medium);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
}

.avatar {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-secondary);
}

.author {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.slider-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    pointer-events: all;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: #e55a2b;
}

.slider-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
}

/* FAQ */
.faq {
    padding: 80px 0;
    background-color: var(--background-medium);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background-color: var(--background-dark);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--primary-color);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background-color: #e55a2b;
    transform: translateY(-1px);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    font-weight: bold;
    color: white;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Disclaimer */
.disclaimer {
    padding: 60px 0;
    background-color: var(--background-dark);
    text-align: center;
}

.disclaimer-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--background-medium);
    padding: 60px 0 20px;
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.contact-info p {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--background-light);
    color: var(--text-color);
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.footer-certifications {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cert-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.cert-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 10px;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    min-width: 120px;
    min-height: 100px;
    justify-content: center;
}

.cert-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
    background-color: var(--background-medium);
}

.cert-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease;
}

.cert-logo:hover .cert-image {
    filter: grayscale(0%) brightness(1);
}

.cert-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.cert-logo:hover .cert-text {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Reviews Page Styles */
.reviews-page {
    padding: 80px 0;
    background-color: var(--background-dark);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.alert-error {
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

.review-form-section {
    background-color: var(--background-medium);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 60px;
    border: 2px solid var(--primary-color);
}

.review-form-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--background-light);
    color: var(--text-color);
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.rating-input {
    display: flex;
    gap: 5px;
    align-items: center;
}

.rating-input input[type='radio'] {
    display: none;
}

.rating-input label {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s ease;
    margin: 0;
}

.rating-input label:hover,
.rating-input input[type='radio']:checked + label {
    color: #ffd700;
}

.reviews-list h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2rem;
    text-align: center;
}

.review-item {
    background-color: var(--background-medium);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.review-header {
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.reviewer-details h3 {
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.review-rating {
    margin-bottom: 5px;
}

.review-rating .star {
    font-size: 1.2rem;
    color: #ccc;
    margin-right: 2px;
}

.review-rating .star.filled {
    color: #ffd700;
}

.review-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.review-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
}

.reviews-stats {
    background-color: var(--background-medium);
    padding: 40px;
    border-radius: 15px;
    margin-top: 60px;
    border: 2px solid var(--primary-color);
}

.reviews-stats h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--background-dark);
    border-radius: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Legal Pages Styles */
.legal-page {
    padding: 80px 0;
    background-color: var(--background-dark);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--background-medium);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
}

.last-updated {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 40px;
    text-align: center;
    font-size: 0.9rem;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-section h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 500;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.legal-section ul {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-section ol {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
    padding-left: 20px;
}

.company-info,
.address-info,
.contact-details,
.service-info,
.age-restrictions,
.disclaimer-info,
.copyright-info,
.third-party-info,
.legal-jurisdiction,
.responsible-gaming {
    background-color: var(--background-dark);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid var(--border-color);
}

.company-info h3,
.address-info h3,
.contact-details h3,
.service-info h3,
.age-restrictions h3,
.disclaimer-info h3,
.copyright-info h3,
.third-party-info h3,
.legal-jurisdiction h3,
.responsible-gaming h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.info-table td {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.info-table td:first-child {
    font-weight: 600;
    color: var(--text-color);
    width: 40%;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: var(--background-dark);
    border-radius: 10px;
    overflow: hidden;
}

.data-table th,
.data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.data-table td {
    color: var(--text-secondary);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.important-notice {
    background-color: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.important-notice p {
    color: #ffc107;
    font-weight: 600;
    margin-bottom: 15px;
}

.important-notice ul {
    color: var(--text-secondary);
}

.help-contacts {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.help-contacts p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-info {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Footer Links */
.footer-links {
    margin: 40px 0;
    text-align: center;
}

.footer-nav h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav li {
    margin: 0;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 5px;
}

.footer-nav a:hover {
    color: var(--primary-color);
    background-color: var(--background-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .game-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .game-character {
        display: none;
    }

    .slider-controls {
        position: static;
        transform: none;
        margin-top: 20px;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .slot-machine {
        padding: 20px;
    }

    .reels {
        gap: 5px;
    }

    .reel {
        width: 60px;
        height: 90px;
    }

    .symbol {
        font-size: 1.5rem;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .cert-logos {
        gap: 20px;
        padding: 0 20px;
    }

    .cert-logo {
        min-width: 100px;
        min-height: 80px;
        padding: 10px;
    }

    .cert-image {
        width: 40px;
        height: 40px;
    }

    .cert-text {
        font-size: 0.8rem;
    }
}
