 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #0a0a0a;
            color: #fff;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: #000;
            padding: 20px 0;
            border-bottom: 3px solid #ff0000;
        }
        
        .logo {
            color: #ff0000;
            font-size: 32px;
            font-weight: bold;
            text-decoration: none;
            font-family: 'Arial Black', Gadget, sans-serif;
            text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(255, 0, 0, 0.2), rgba(0, 0, 0, 0.9)), 
                        url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }
        
        .hero h1 {
            font-size: 52px;
            color: #fff;
            text-shadow: 3px 3px 6px #000;
            letter-spacing: 2px;
        }
        
        .hero .pixel-corners {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                transparent 48%, #ff0000 48%, #ff0000 52%, transparent 52%),
                linear-gradient(-45deg, 
                transparent 48%, #ff0000 48%, #ff0000 52%, transparent 52%);
            background-size: 20px 20px;
            opacity: 0.3;
            pointer-events: none;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 60px 0;
        }
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
            background-color: #111;
            padding: 30px;
            border: 3px solid #ff0000;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
        }
        
        .contact-form h2 {
            color: #ff0000;
            font-size: 32px;
            margin-bottom: 15px;
            text-transform: uppercase;
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        
        .contact-form p {
            margin-bottom: 20px;
            color: #ccc;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #fff;
            font-weight: bold;
        }
        
        .form-control {
            width: 100%;
            padding: 14px;
            background-color: #000;
            border: 2px solid #333;
            color: #fff;
            border-radius: 6px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #ff0000;
            box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
        }
        
        textarea.form-control {
            min-height: 180px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: #ff0000;
            color: #000;
            border: none;
            padding: 14px 30px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Arial Black', Gadget, sans-serif;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: #000;
            color: #ff0000;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .info-box {
            background-color: #111;
            padding: 30px;
            margin-bottom: 25px;
            border: 3px solid #ff0000;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
        }
        
        .info-box h3 {
            color: #ff0000;
            font-size: 26px;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        
        .info-box p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 16px;
        }
        
        .info-box i {
            color: #ff0000;
            margin-right: 15px;
            width: 24px;
            text-align: center;
            font-size: 20px;
        }
        
        /* Game Support Section */
        .support-box {
            background-color: #111;
            padding: 30px;
            border: 3px solid #ff0000;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
        }
        
        .support-box h3 {
            color: #ff0000;
            font-size: 26px;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        
        .support-box ul {
            list-style-type: none;
        }
        
        .support-box li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        
        .support-box li::before {
            content: "►";
            color: #ff0000;
            margin-right: 10px;
            font-size: 14px;
        }
        
        /* Footer */
        footer {
            background-color: #000;
            padding: 40px 0;
            text-align: center;
            border-top: 3px solid #ff0000;
        }
        
        .social-links {
            margin-bottom: 25px;
        }
        
        .social-links a {
            color: #fff;
            font-size: 24px;
            margin: 0 15px;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .social-links a:hover {
            color: #ff0000;
            transform: translateY(-5px);
        }
        
        .copyright {
            color: #999;
            font-size: 16px;
            margin-top: 20px;
        }
        
        /* Game-themed Elements */
        .pixel-divider {
            height: 4px;
            background: repeating-linear-gradient(to right, 
                #000, #000 10px, #ff0000 10px, #ff0000 20px);
            margin: 30px 0;
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .contact-container {
                flex-direction: column;
            }
            
            .submit-btn {
                padding: 12px 20px;
                font-size: 16px;
            }
        }