/* 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: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Neon Text Effect */
.neon-text {
    color: #f53b31;
    text-shadow: 
        0 0 5px #f53b31,
        0 0 10px #f53b31,
        0 0 20px #f53b31,
        0 0 40px #f53b31;
    animation: neonGlow 2s infinite alternate;
}

@keyframes neonGlow {
    from {
        text-shadow: 
            0 0 5px #f53b31,
            0 0 10px #f53b31,
            0 0 20px #f53b31,
            0 0 40px #f53b31;
    }
    to {
        text-shadow: 
            0 0 2px #f53b31,
            0 0 5px #f53b31,
            0 0 10px #f53b31,
            0 0 20px #f53b31,
            0 0 35px #f53b31;
    }
}

/* Neon Buttons */
.neon-btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.neon-btn.primary {
    background: linear-gradient(45deg, #f53b31, #ff6b5a);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(245, 59, 49, 0.3);
}

.neon-btn.primary:hover {
    background: linear-gradient(45deg, #ff6b5a, #f53b31);
    box-shadow: 0 0 30px rgba(245, 59, 49, 0.6);
    transform: translateY(-2px);
}

.neon-btn.secondary {
    background: linear-gradient(45deg, #313ef5, #5a6bff);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(49, 62, 245, 0.3);
}

.neon-btn.secondary:hover {
    background: linear-gradient(45deg, #5a6bff, #313ef5);
    box-shadow: 0 0 30px rgba(49, 62, 245, 0.6);
    transform: translateY(-2px);
}

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

.neon-btn.outline:hover {
    background: #f53b31;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(245, 59, 49, 0.4);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid #f53b31;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons .neon-btn {
    padding: 8px 16px;
    font-size: 14px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 59, 49, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo .logo {
    height: 40px;
    width: auto;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: #f53b31;
    text-shadow: 0 0 10px rgba(245, 59, 49, 0.5);
}

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

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #313ef5;
    text-shadow: 0 0 10px rgba(49, 62, 245, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-btn {
    font-size: 1.1rem;
    padding: 15px 40px;
}

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

.section.alt-bg {
    background: linear-gradient(135deg, rgba(49, 62, 245, 0.05), rgba(245, 59, 49, 0.05));
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(49, 62, 245, 0.1), rgba(245, 59, 49, 0.1));
}

.page-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Company Grid */
.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.company-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(245, 59, 49, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.company-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 59, 49, 0.5);
    box-shadow: 0 20px 40px rgba(245, 59, 49, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.company-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #f53b31;
}

/* Games Grid */
.genres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.genre-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(49, 62, 245, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.genre-card:hover {
    transform: translateY(-10px);
    border-color: rgba(49, 62, 245, 0.5);
    box-shadow: 0 20px 40px rgba(49, 62, 245, 0.1);
}

.genre-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.genre-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #313ef5;
}

/* Benefits Section */
.benefits-content {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.benefit-item h3 {
    color: #f53b31;
    margin-bottom: 10px;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(245, 59, 49, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 59, 49, 0.5);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.reviewer {
    text-align: right;
    margin-top: 15px;
    font-style: italic;
    color: #313ef5;
}

/* Newsletter Form */
.newsletter-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form button {
    margin-top: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #f53b31;
    box-shadow: 0 0 10px rgba(245, 59, 49, 0.3);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-item h3 {
    color: #f53b31;
    margin-bottom: 10px;
}

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

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

.social-links h3 {
    color: #313ef5;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(45deg, #f53b31, #313ef5);
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(245, 59, 49, 0.3);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-logo .logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-column h4 {
    color: #f53b31;
    margin-bottom: 15px;
}

.footer-column a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #313ef5;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Games Page Specific */
.filters-section {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
}

.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #f53b31;
    color: #f53b31;
    background: rgba(245, 59, 49, 0.1);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 59, 49, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.game-info {
    padding: 20px;
}

.game-info h3 {
    color: #f53b31;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.game-genre {
    display: inline-block;
    background: linear-gradient(45deg, #313ef5, #5a6bff);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9rem;
}

.rating {
    color: #ffd700;
}

.downloads {
    color: #313ef5;
}

/* History Page */
.timeline-section {
    padding: 60px 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #f53b31, #313ef5);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 30px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 30px;
}

.timeline-date {
    position: absolute;
    top: 0;
    width: 80px;
    height: 40px;
    background: linear-gradient(45deg, #f53b31, #313ef5);
    color: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -40px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -40px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.timeline-content h3 {
    color: #f53b31;
    margin-bottom: 10px;
}

/* Polish Gaming Section */
.polish-gaming-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(49, 62, 245, 0.05), rgba(245, 59, 49, 0.05));
}

.polish-gaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.achievement-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 59, 49, 0.5);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.achievement-card h3 {
    font-size: 2rem;
    color: #f53b31;
    margin-bottom: 10px;
}

/* Future Section */
.future-section {
    padding: 60px 0;
}

.future-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.future-list {
    list-style: none;
    margin-top: 20px;
}

.future-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.future-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #313ef5;
}

.future-bg {
    width: 100%;
    height: auto;
    opacity: 0.6;
}

/* Contact Page Specific */
.contact-details-section {
    padding: 60px 0;
}

.contact-info-detailed {
    grid-column: 1;
}

.contact-item-detailed {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item-detailed:hover {
    border-color: rgba(245, 59, 49, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon-large {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-text h3 {
    color: #f53b31;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-text a {
    color: #313ef5;
    text-decoration: none;
}

.contact-text a:hover {
    color: #f53b31;
}

/* Contact Form */

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #f53b31;
    font-weight: 500;
}

.form-group select {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: #313ef5;
    text-decoration: none;
}

.checkbox-group a:hover {
    color: #f53b31;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.map-placeholder {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(245, 59, 49, 0.3);
}

.map-overlay h3 {
    color: #f53b31;
    margin-bottom: 15px;
}

/* Social Section */
.social-section {
    padding: 60px 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.social-card {
    display: block;
    text-decoration: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 59, 49, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.social-card h3 {
    color: #f53b31;
    margin-bottom: 10px;
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.thanks-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #313ef5;
}

.thanks-info {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.thanks-additional {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.thanks-additional h3 {
    color: #f53b31;
    margin-bottom: 15px;
}

.thanks-list {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.thanks-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.thanks-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #313ef5;
}

.thanks-list a {
    color: #313ef5;
    text-decoration: none;
}

.thanks-list a:hover {
    color: #f53b31;
}

/* Legal Pages */
.legal-content-section {
    padding: 60px 0;
}

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

.legal-content h2 {
    color: #f53b31;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: #313ef5;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: #313ef5;
    text-decoration: none;
}

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

/* Cookie Settings */
.cookie-settings-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.cookie-manager {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-categories {
    margin: 30px 0;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category h3 {
    color: #f53b31;
    margin: 0;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #f53b31;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: #313ef5;
    cursor: not-allowed;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(245, 59, 49, 0.1), rgba(49, 62, 245, 0.1));
}

.cta-section h2 {
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        border-top: 1px solid rgba(245, 59, 49, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .company-grid,
    .genres-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-date {
        left: -20px !important;
        right: auto !important;
    }
    
    .future-content {
        grid-template-columns: 1fr;
    }
    
    .polish-gaming-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item-detailed {
        flex-direction: column;
        text-align: center;
    }
    
    .map-overlay {
        padding: 20px;
        margin: 20px;
    }
}

/* Animation for elements appearing on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Glitch effect for special elements */
@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 #f53b31, -0.05em -0.025em 0 #313ef5, 0.025em 0.05em 0 #00ff00;
    }
    15% {
        text-shadow: 0.05em 0 0 #f53b31, -0.05em -0.025em 0 #313ef5, 0.025em 0.05em 0 #00ff00;
    }
    16% {
        text-shadow: -0.05em -0.025em 0 #f53b31, 0.025em 0.025em 0 #313ef5, -0.05em -0.05em 0 #00ff00;
    }
    49% {
        text-shadow: -0.05em -0.025em 0 #f53b31, 0.025em 0.025em 0 #313ef5, -0.05em -0.05em 0 #00ff00;
    }
    50% {
        text-shadow: 0.025em 0.05em 0 #f53b31, 0.05em 0 0 #313ef5, 0 -0.05em 0 #00ff00;
    }
    99% {
        text-shadow: 0.025em 0.05em 0 #f53b31, 0.05em 0 0 #313ef5, 0 -0.05em 0 #00ff00;
    }
    100% {
        text-shadow: -0.025em 0 0 #f53b31, -0.025em -0.025em 0 #313ef5, -0.025em -0.05em 0 #00ff00;
    }
}

.glitch {
    animation: glitch 1s linear infinite;
}
