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

body {
    font-family: 'Courier New', monospace;
    line-height: 1.4;
    color: #000;
    background: #fff;
    overflow-x: hidden;
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ff0000;
    color: #fff;
    padding: 15px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    z-index: 1000;
    border-bottom: 4px solid #ff0000;
}

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

.logo {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #ff0000;
    text-decoration: none;
    letter-spacing: 2px;
    transform: skew(-10deg);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: width 0.3s ease;
}

.nav-links a:hover::before {
    width: 100%;
}

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

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 77px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 77px);
    background: #000;
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    transition: left 0.3s ease;
    z-index: 999;
}

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

.mobile-link {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: #ff0000;
}

/* Hero Section */
.hero {
    margin-top: 77px;
    min-height: 90vh;
    background: linear-gradient(45deg, #000 25%, #ff0000 25%, #ff0000 50%, #000 50%, #000 75%, #ff0000 75%);
    background-size: 60px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 90vh;
}

.hero-text h1 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: clamp(40px, 8vw, 80px);
    line-height: 0.9;
    color: #000;
    margin-bottom: 30px;
    transform: skew(-5deg);
    text-shadow: 4px 4px 0 #ff0000;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #333;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 3px solid #000;
    position: relative;
}

.cta-primary {
    background: #ff0000;
    color: #fff;
}

.cta-primary:hover {
    background: #000;
    border-color: #ff0000;
}

.cta-secondary {
    background: #fff;
    color: #000;
}

.cta-secondary:hover {
    background: #000;
    color: #fff;
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 8px solid #000;
    transform: rotate(-3deg);
    box-shadow: 20px 20px 0 #ff0000;
}

/* Games Section */
.games {
    padding: 100px 0;
    background: #000;
    color: #fff;
    position: relative;
}

.games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 98px,
        #ff0000 98px,
        #ff0000 100px
    );
    opacity: 0.1;
}

.games h2 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #ff0000;
    transform: skew(-5deg);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.game-card {
    background: #fff;
    color: #000;
    border: 4px solid #ff0000;
    overflow: hidden;
    transform: rotate(1deg);
    transition: all 0.3s ease;
}

.game-card:nth-child(even) {
    transform: rotate(-1deg);
}

.game-card:hover {
    transform: rotate(0deg) scale(1.05);
}

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

.game-info {
    padding: 25px;
}

.game-info h3 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: #ff0000;
}

.game-info p {
    margin-bottom: 15px;
    font-size: 14px;
}

.game-price {
    font-weight: bold;
    font-size: 18px;
    color: #000;
    background: #ff0000;
    color: #fff;
    padding: 5px 15px;
    display: inline-block;
}

/* Research Section */
.research {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.research::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: #ff0000;
    clip-path: polygon(0 0, 70% 0, 50% 100%, 0 100%);
}

.research-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.research-text {
    color: #fff;
    padding-left: 60px;
}

.research-text h2 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 42px;
    margin-bottom: 20px;
    transform: skew(-5deg);
}

.research-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #000;
}

.research-text p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #000;
}

.research-stats {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.research-stats li {
    background: #000;
    color: #fff;
    padding: 15px;
    text-align: center;
}

.research-visual {
    position: relative;
}

.research-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 6px solid #000;
    transform: rotate(2deg);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #000;
    color: #fff;
}

.pricing h2 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #ff0000;
    transform: skew(-5deg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.price-card {
    background: #fff;
    color: #000;
    border: 4px solid #ff0000;
    padding: 30px;
    text-align: center;
    position: relative;
    transform: rotate(-1deg);
}

.price-card.featured {
    transform: rotate(1deg) scale(1.05);
    border-color: #ff0000;
    background: #ff0000;
    color: #fff;
}

.price-card.featured .price-btn {
    background: #000;
    color: #fff;
}

.price-header h3 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-desc {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
    display: block;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.price-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.price-card.featured .price-features li {
    border-bottom-color: rgba(255,255,255,0.3);
}

.price-btn {
    background: #ff0000;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #ff0000;
    transition: all 0.3s ease;
    display: inline-block;
}

.price-btn:hover {
    background: #000;
    border-color: #000;
}

.special-offer {
    text-align: center;
    background: #ff0000;
    color: #fff;
    padding: 20px;
    margin-top: 40px;
    transform: rotate(-1deg);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #fff;
}

.testimonials h2 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
    transform: skew(-5deg);
}

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

.testimonial {
    background: #000;
    color: #fff;
    padding: 30px;
    border: 4px solid #ff0000;
    transform: rotate(1deg);
    position: relative;
}

.testimonial:nth-child(even) {
    transform: rotate(-1deg);
}

.testimonial::before {
    content: '"';
    font-size: 80px;
    color: #ff0000;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 40px;
}

.testimonial-author strong {
    font-size: 18px;
    color: #ff0000;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    opacity: 0.8;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #000;
    color: #fff;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #ff0000;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.faq h2 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #ff0000;
    transform: skew(-5deg);
    position: relative;
    z-index: 2;
}

.faq-list {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid #ff0000;
    margin-bottom: 20px;
    background: #fff;
    color: #000;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    background: #ff0000;
    color: #fff;
    margin: 0;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff0000 25%, transparent 25%, transparent 50%, #ff0000 50%, #ff0000 75%, transparent 75%);
    background-size: 40px 40px;
    opacity: 0.1;
}

.contact-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 42px;
    margin-bottom: 40px;
    color: #000;
    transform: skew(-5deg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 20px;
    color: #ff0000;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-item p {
    font-size: 16px;
    color: #333;
}

.contact-form {
    background: #000;
    color: #fff;
    padding: 40px;
    border: 4px solid #ff0000;
    transform: rotate(-2deg);
}

.contact-form h3 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: #ff0000;
    text-align: center;
}

.contact-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #ff0000;
    background: #fff;
    color: #000;
    font-family: 'Courier New', monospace;
    font-size: 16px;
}

.contact-form input:focus {
    outline: none;
    border-color: #fff;
    background: #ff0000;
    color: #fff;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #ff0000;
    color: #fff;
    border: 2px solid #ff0000;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #fff;
    padding: 40px;
    border: 4px solid #ff0000;
    text-align: center;
    max-width: 400px;
    transform: rotate(-2deg);
}

.popup-content h3 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 28px;
    color: #ff0000;
    margin-bottom: 20px;
}

.popup-content p {
    margin-bottom: 30px;
    color: #333;
}

.popup-btn {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.popup-btn:hover {
    background: #000;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    border-top: 4px solid #ff0000;
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero-text h1 {
        font-size: 48px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .research-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .research::before {
        display: none;
    }
    
    .research-text {
        padding-left: 0;
        color: #000;
    }
    
    .research-text h2 {
        color: #ff0000;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        transform: rotate(0deg);
    }
    
    .games-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .research-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 36px;
    }
    
    .games h2,
    .pricing h2,
    .testimonials h2,
    .faq h2 {
        font-size: 36px;
    }
    
    .contact-info h2 {
        font-size: 32px;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
}