/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(26, 26, 46, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
}

.nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
}

.nav-link:hover {
    color: #00d4ff;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0099cc, #007acc);
    transform: translateY(-2px);
}

.btn-hero {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 18px;
}

.btn-hero:hover {
    background: linear-gradient(45deg, #ee5a24, #c0392b);
    transform: translateY(-2px);
}

.btn-cta {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: #ffffff;
    padding: 15px 35px;
    font-size: 18px;
    margin: 30px 0;
}

.btn-cta:hover {
    background: linear-gradient(45deg, #27ae60, #1e8449);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Content Section Styles */
.content-section {
    padding: 40px 0;
}

.content-section h2 {
    font-size: 2rem;
    margin: 40px 0 20px 0;
    text-align: center;
    color: #00d4ff;
}

.content-section h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    color: #ffffff;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}

.content-section ul, .content-section ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-section li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Table Styles */
.table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.info-table th {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

.info-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
}

.info-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Image Styles */
.image-block {
    text-align: center;
    margin: 30px 0;
}

.content-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-section {
    text-align: center;
    margin: 40px 0;
}

/* FAQ Styles */
.faq-container {
    margin: 30px 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: #ffffff;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #00d4ff;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #00d4ff;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    margin: 0;
}

/* Footer Styles */
.footer {
    background: rgba(26, 26, 46, 0.95);
    padding: 40px 0 20px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 18px;
}

.payment-methods, .providers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-icon, .provider-icon {
    width: 60px;
    height: 40px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 5px;
}

.age-restriction {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.responsible-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.responsible-links a {
    color: #00d4ff;
    text-decoration: none;
}

.responsible-links a:hover {
    text-decoration: underline;
}

.contact a {
    color: #00d4ff;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 10px;
    color: #cccccc;
}

.last-updated {
    font-size: 14px;
    color: #999999;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav {
        justify-content: center;
        gap: 15px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.7rem;
    }
    
    .content-section h3 {
        font-size: 1.3rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .info-table {
        font-size: 14px;
    }
    
    .info-table th, .info-table td {
        padding: 10px 8px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .payment-methods, .providers {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: 30px 0;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .nav {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 12px;
    }
}
.author-bio {
    background-color: #2a2a2a;
    padding: 40px 0;
    border-top: 1px solid #ddd;
    margin-top: 40px;
}

.author-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.author-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ccc;
}

.author-text {
    flex: 1;
    min-width: 250px;
}

.author-text h3 {
    margin-top: 0;
    font-size: 1.5em;
    color: #fffffff;
}

.author-text p {
    margin-top: 10px;
    font-size: 1em;
    color: #ffffff;
    line-height: 1.6;
}