/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    border-top: 1px solid #333;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-accept, .btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #FF6B6B;
    color: white;
}

.btn-accept:hover {
    background: #ff5252;
}

.btn-reject {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
}

.btn-reject:hover {
    background: #333;
}

.cookie-link {
    color: #FF6B6B;
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FF6B6B;
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    min-width: 180px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #FF6B6B;
}

.nav-mobile {
    display: none;
}

.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 140px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #B8B8B8;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B6B 0%, #ff5252 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 15px 30px;
    border: 2px solid #FF6B6B;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #FF6B6B;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B6B;
    margin-bottom: 5px;
}

.stat-label {
    color: #B8B8B8;
    font-size: 0.9rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    width: 250px;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: #FF6B6B;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.game-card.valorant {
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.2) 0%, rgba(255, 107, 107, 0.1) 100%);
}

.game-card.lol {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2) 0%, rgba(255, 107, 107, 0.1) 100%);
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #FF6B6B;
}

.game-card p {
    color: #B8B8B8;
}

/* Services Section */
.services {
    padding: 100px 20px;
    background: rgba(255, 255, 255, 0.02);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #FF6B6B;
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.1);
}

.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card p {
    color: #B8B8B8;
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    padding: 100px 20px;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: #FF6B6B;
    transform: scale(1.05);
    background: rgba(255, 107, 107, 0.1);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B6B 0%, #ff5252 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B6B;
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    color: #B8B8B8;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card li {
    padding: 10px 0;
    color: #B8B8B8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-card li::before {
    content: "✓";
    color: #4ECDC4;
    margin-right: 10px;
    font-weight: bold;
}

/* Blog Section */
.blog {
    padding: 100px 20px;
    background: rgba(255, 255, 255, 0.02);
}

.blog h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: #FF6B6B;
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.1);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    position: relative;
}

.blog-image.valorant-bg {
    background: linear-gradient(135deg, #FF4654 0%, #FD267D 100%);
}

.blog-image.lol-bg {
    background: linear-gradient(135deg, #C89B3C 0%, #463714 100%);
}

.blog-image.gaming-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-content {
    padding: 30px;
}

.blog-category {
    background: rgba(255, 107, 107, 0.2);
    color: #FF6B6B;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.blog-card p {
    color: #B8B8B8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #ffffff;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #FF6B6B;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item div {
    color: #B8B8B8;
    line-height: 1.6;
}

.contact-item strong {
    color: #ffffff;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 20px 20px;
    border-top: 1px solid rgba(255, 107, 107, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-section p {
    color: #B8B8B8;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section a {
    display: block;
    color: #B8B8B8;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FF6B6B;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

.footer-disclaimer {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #666;
    opacity: 0.8;
}

.company-legal {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 8px;
    border-left: 3px solid #FF6B6B;
}

.company-legal p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.company-legal strong {
    color: #FF6B6B;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    margin: 5% auto;
    padding: 40px;
    border: 1px solid #FF6B6B;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #FF6B6B;
}

.modal-content h3 {
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-content input,
.modal-content textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 8px;
    padding: 15px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
}

.modal-content input:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #FF6B6B;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

.modal-content input::placeholder,
.modal-content textarea::placeholder {
    color: #B8B8B8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .game-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .game-card {
        width: 200px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .game-card {
        width: 100%;
        max-width: 250px;
    }
    
    .services h2,
    .pricing h2,
    .blog h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .pricing-card {
        padding: 30px 20px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content h1 {
    animation-delay: 0.2s;
}

.hero-content .hero-subtitle {
    animation-delay: 0.4s;
}

.hero-content .hero-buttons {
    animation-delay: 0.6s;
}

.hero-content .hero-stats {
    animation-delay: 0.8s;
}
