/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #333;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background-color: #6B48FF;
    color: white;
}

.btn-primary:hover {
    background-color: #5a3fd8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 72, 255, 0.3);
}

.btn-secondary {
    background-color: #1a1a1a;
    color: white;
}

.btn-secondary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: #6B48FF;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ===== HEADER ===== */
.header {
    background-color: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: #6B48FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.logo-icon span {
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
}

.logo-text {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.5rem;
}

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

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

.nav-link:hover,
.nav-item.active .nav-link {
    color: #6B48FF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6B48FF;
    transition: width 0.3s ease;
}

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

.header-cta {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 2rem;
}

.mobile-nav-list {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-nav-item {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
}

.mobile-nav-link:hover,
.mobile-nav-item.active .mobile-nav-link {
    color: #6B48FF;
}

.mobile-cta {
    text-align: center;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #6B48FF 0%, #8B5CF6 100%);
    color: white;
    text-align: center;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-breadcrumb {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-image {
    margin-top: 3rem;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.hero-bg-element {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #333;
    font-size: 1.1rem;
}

/* ===== WHY SECTION ===== */
.why-section {
    background-color: #f8f9fa;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.why-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: #6B48FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-icon span {
    color: white;
    font-size: 1.2rem;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.feature-content p {
    color: #333;
}

.why-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.why-cta img {
    width: 200px;
    height: auto;
    border-radius: 10px;
}

/* ===== GAMES SECTION ===== */
.games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.games-nav {
    display: flex;
    gap: 1rem;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid #6B48FF;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background-color: #6B48FF;
    color: white;
}

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

.game-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.game-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-content {
    padding: 1.5rem;
}

.game-title {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.game-description {
    color: #333;
    margin-bottom: 1rem;
}

.game-link {
    display: inline-flex;
    align-items: center;
    color: #6B48FF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.game-link:hover {
    color: #5a3fd8;
}

/* ===== FEATURES BAR ===== */
.features-bar {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 0;
}

.features-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    color: #10B981;
    font-size: 1.5rem;
}

.feature-text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== PLATFORM FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.feature-card-large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.feature-card-small {
    text-align: center;
}

.feature-card-yellow {
    background-color: #FEF3C7;
}

.feature-card-green {
    background-color: #D1FAE5;
}

.feature-card-purple {
    background-color: #E9D5FF;
}

.feature-card-blue {
    background-color: #DBEAFE;
}

.feature-card-peach {
    background-color: #FED7AA;
}

.feature-title {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background-color: #1a1a1a;
    color: white;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.testimonial {
    background-color: white;
    color: #333;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: #1a1a1a;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #10B981;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-nav {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-dot.active {
    background-color: #6B48FF;
}

.testimonial-nav-arrows {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* ===== FAQ SECTION ===== */
.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-list {
    margin-bottom: 2rem;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #6B48FF;
}

.faq-question h4 {
    margin-bottom: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6B48FF;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 1rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 0;
}

.partners-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
}

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

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.cookie-text p {
    margin: 0;
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-btn.accept {
    background-color: #6B48FF;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #5a3fd8;
    transform: translateY(-2px);
}

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

.cookie-btn.decline:hover {
    background-color: #e0e0e0;
    color: #1a1a1a;
}

@media (max-width: 767px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

/* ===== FOOTER ===== */
.footer-top {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0;
}

.footer-top-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.footer-top-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-icon {
    width: 60px;
    height: 60px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon span {
    font-size: 1.5rem;
    color: white;
}

.footer-text h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.footer-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer-bottom {
    background-color: #6B48FF;
    color: white;
    padding: 60px 0 20px;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-description,
.footer-contact,
.footer-contact-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== ICONS ===== */
.icon-person::before { content: "👤"; }
.icon-envelope::before { content: "✉️"; }
.icon-phone::before { content: "📞"; }
.icon-folder::before { content: "📁"; }
.icon-clock::before { content: "⏰"; }
.icon-shield::before { content: "🛡️"; }
.icon-device::before { content: "📱"; }
.icon-community::before { content: "👥"; }
.icon-star::before { content: "⭐"; }
.icon-arrow-left::before { content: "←"; }
.icon-arrow-right::before { content: "→"; }
.icon-check::before { content: "✓"; }
.icon-check-circle::before { content: "✅"; }
.icon-heart::before { content: "❤️"; }
.icon-innovation::before { content: "💡"; }
.icon-quality::before { content: "🏆"; }
.icon-team::before { content: "👨‍💼"; }
.icon-customer::before { content: "👤"; }
.icon-location::before { content: "📍"; }
