/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff4da0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-brand a:hover {
    color: #ffe44d;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff4da0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff4da0, #ffe44d);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ff4da0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    overflow: hidden;
    padding: 100px 0 ;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff4da0, #ffe44d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-cta {
    animation: fadeInUp 1s ease 0.4s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff4da0, #ffe44d);
    color: #121212;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 77, 160, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ff4da0;
    border: 2px solid #ff4da0;
}

.btn-secondary:hover {
    background: #ff4da0;
    color: #121212;
}

.btn-outline {
    background: transparent;
    color: #e0e0e0;
    border: 2px solid #333;
}

.btn-outline:hover {
    background: #333;
    color: #fff;
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #1a1a1a;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 77, 160, 0.1), rgba(255, 228, 77, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(255, 77, 160, 0.2);
}

.stat h3 {
    font-size: 2.5rem;
    color: #ff4da0;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #b0b0b0;
    font-size: 1rem;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: linear-gradient(135deg, rgba(255, 77, 160, 0.05), rgba(255, 228, 77, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 77, 160, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 77, 160, 0.2);
}

.advantage-card h3 {
    color: #ff4da0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.advantage-card p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* Platform Section */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: linear-gradient(135deg, #1a1a1a, #252525);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: #ff4da0;
}

.platform-card h3 {
    color: #ffe44d;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.rating {
    color: #ffe44d;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.platform-card p {
    margin-bottom: 1.5rem;
    color: #b0b0b0;
    line-height: 1.7;
}

.platform-card ul {
    list-style: none;
}

.platform-card li {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.platform-card li::before {
    content: '✓';
    color: #ff4da0;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: linear-gradient(135deg, rgba(255, 228, 77, 0.05), rgba(255, 77, 160, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 228, 77, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-card h3 {
    color: #ffe44d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.achievement-card p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: linear-gradient(135deg, #1a1a1a, #252525);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #ffe44d;
}

.review-rating {
    color: #ffe44d;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    line-height: 1.7;
}

.review-author strong {
    color: #ff4da0;
    display: block;
    margin-bottom: 0.5rem;
}

.review-author span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, rgba(255, 77, 160, 0.1), rgba(255, 228, 77, 0.1));
    padding: 60px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.newsletter p {
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Form Styles */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid #333;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff4da0;
    box-shadow: 0 0 0 2px rgba(255, 77, 160, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: #ff4da0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

.contact-item a {
    color: #ffe44d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff4da0;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #333;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff4da0;
    color: #121212;
    border-color: #ff4da0;
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 77, 160, 0.05), rgba(255, 228, 77, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 77, 160, 0.1);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 40px 0 20px;
    border-top: 1px solid #333;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ff4da0;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffe44d;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #666;
}

/* Blog Styles */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #121212, #1a1a1a);
}

.page-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
}

.blog-section {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 77, 160, 0.2);
}

.blog-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 77, 160, 0.1), rgba(255, 228, 77, 0.1));
}

.blog-image img {
    width: 80px;
    height: 80px;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-date {
    color: #b0b0b0;
}

.blog-category {
    color: #ff4da0;
    font-weight: 600;
}

.blog-content h2 {
    margin-bottom: 1rem;
}

.blog-content h2 a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: #ff4da0;
}

.blog-content p {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #ffe44d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff4da0;
}

/* Article Styles */
.article-header {
    padding: 120px 0 40px;
    background: linear-gradient(135deg, #121212, #1a1a1a);
}

.breadcrumb {
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: #ff4da0;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #ffe44d;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.article-date,
.article-category {
    padding: 0.5rem 1rem;
    background: rgba(255, 77, 160, 0.1);
    border-radius: 20px;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.article-image {
    text-align: center;
    margin-bottom: 2rem;
}

.article-image img {
    width: 120px;
    height: 120px;
}

.article-content {
    padding: 40px 0;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-intro {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 77, 160, 0.05), rgba(255, 228, 77, 0.05));
    border-radius: 10px;
    border-left: 4px solid #ff4da0;
}

.article-body h2 {
    color: #ff4da0;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.article-body h3 {
    color: #ffe44d;
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.article-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.article-body ul,
.article-body ol {
    margin: 1rem 0 1.5rem 2rem;
    color: #e0e0e0;
}

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid #333;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-share span {
    color: #b0b0b0;
    font-weight: 600;
}

.article-share a {
    color: #ff4da0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #ff4da0;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.article-share a:hover {
    background: #ff4da0;
    color: #121212;
}

.related-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.related-articles h3 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-card {
    display: block;
    text-decoration: none;
    background: linear-gradient(135deg, #1a1a1a, #252525);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-3px);
    border-color: #ff4da0;
}

.related-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.related-card h4 {
    color: #ffe44d;
    font-size: 1.1rem;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 60px;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.legal-header p {
    color: #b0b0b0;
    font-size: 1rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    color: #ff4da0;
    margin: 2rem 0 1rem;
    font-size: 1.6rem;
}

.legal-content h3,
.legal-content h4 {
    color: #ffe44d;
    margin: 1.5rem 0 1rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: #ffe44d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #ff4da0;
}

.contact-details {
    background: linear-gradient(135deg, rgba(255, 77, 160, 0.05), rgba(255, 228, 77, 0.05));
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 77, 160, 0.1);
    margin: 1rem 0;
}

/* Thank You Page */
.thank-you-page {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    font-size: 3rem;
    color: #ff4da0;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.thank-you-details h2 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.step-number {
    background: linear-gradient(135deg, #ff4da0, #ffe44d);
    color: #121212;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #ffe44d;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #b0b0b0;
    line-height: 1.6;
}

.thank-you-info h2 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.info-card {
    background: linear-gradient(135deg, rgba(255, 77, 160, 0.05), rgba(255, 228, 77, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 77, 160, 0.1);
    text-align: center;
}

.info-card h3 {
    color: #ff4da0;
    margin-bottom: 1rem;
}

.info-card p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.thank-you-contact {
    background: linear-gradient(135deg, #1a1a1a, #252525);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    margin-bottom: 3rem;
}

.thank-you-contact h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.thank-you-contact p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.contact-option strong {
    color: #ff4da0;
}

.contact-option a {
    color: #ffe44d;
    text-decoration: none;
}

.contact-option a:hover {
    color: #ff4da0;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border-top: 1px solid #333;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text h3 {
    color: #ff4da0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-text p {
    color: #b0b0b0;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 2rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border-radius: 15px;
    border: 1px solid #333;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #333;
}

.cookie-modal-header h3 {
    color: #ff4da0;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: #b0b0b0;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ff4da0;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
}

.cookie-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.cookie-label input[type="checkbox"] {
    margin-top: 0.2rem;
}

.cookie-label span {
    color: #fff;
    font-weight: 600;
}

.cookie-category p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
    margin-left: 1.5rem;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem 1rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-4px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .advantages-grid,
    .platforms-grid,
    .achievements-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .article-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-share {
        flex-wrap: wrap;
    }

    .next-steps {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-options {
        flex-direction: column;
        gap: 1rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .thank-you-content h1 {
        font-size: 2.2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .cookie-modal {
        padding: 1rem;
    }
    [class*="-grid"] {grid-template-columns: 1fr;}
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-title {
        color: #fff;
        background: none;
        -webkit-text-fill-color: initial;
    }

    .btn-primary {
        background: #ff4da0;
        color: #000;
    }

    .advantage-card,
    .platform-card,
    .achievement-card,
    .review-card {
        border-color: #ff4da0;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-notice,
    .cookie-modal,
    .social-links,
    .btn {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
    }

    .section {
        background: #fff !important;
    }
}

