* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background: #0f0f0f;
            color: #e5e5e5;
            line-height: 1.4;
            overflow-x: hidden;
        }

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

        /* Header */
        .header {
            background: #000;
            border-bottom: 1px solid #333;
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #d4af37;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-links a {
            color: #e5e5e5;
            text-decoration: none;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #d4af37;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
            position: relative;
            margin-top: 80px;
        }

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

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 300;
            margin-bottom: 20px;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 3px;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #888;
            font-weight: 300;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .domain-info {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .cta-button {
            background: transparent;
            color: #d4af37;
            padding: 15px 50px;
            border: 2px solid #d4af37;
            font-size: 1rem;
            font-weight: 400;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease-out 0.9s both;
        }

        .cta-button:hover {
            background: #d4af37;
            color: #000;
        }

        /* Slider Section */
        .slider-section {
            padding: 100px 0;
            background: #000;
        }

        .slider-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            position: relative;
        }

        .slide img {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #1a1a1a, #333);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #d4af37;
            border: 1px solid #333;
        }

        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 40px;
            color: #fff;
        }

        .slide-overlay h3 {
            font-size: 2rem;
            margin-bottom: 10px;
            color: #d4af37;
            font-weight: 300;
        }

        .slide-overlay p {
            font-size: 1.1rem;
            color: #ccc;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            border: 1px solid #333;
            color: #d4af37;
            width: 50px;
            height: 50px;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .slider-nav:hover {
            background: rgba(212, 175, 55, 0.1);
        }

        .slider-nav.prev {
            left: 20px;
        }

        .slider-nav.next {
            right: 20px;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border: 1px solid #333;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: #d4af37;
        }

        /* Sections */
        .section {
            padding: 100px 0;
            border-bottom: 1px solid #222;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 80px;
            color: #d4af37;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Games Section */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1px;
            background: #333;
        }

        .game-card {
            background: #1a1a1a;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .game-card:hover {
            background: #222;
        }

        .game-card img {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: #666;
            border-bottom: 1px solid #333;
        }

        .game-card-content {
            padding: 40px;
        }

        .game-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #d4af37;
            font-weight: 300;
            text-transform: uppercase;
        }

        .game-card p {
            color: #888;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* About Section */
        .about {
            background: #0a0a0a;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #888;
        }

        .about-text h3 {
            color: #d4af37;
            font-size: 1.8rem;
            margin-bottom: 30px;
            font-weight: 300;
            text-transform: uppercase;
        }

        .about-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
            border: 1px solid #333;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: #666;
        }

        /* Features */
        .features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: #333;
            margin-top: 60px;
        }

        .feature {
            background: #1a1a1a;
            padding: 60px 40px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature:hover {
            background: #222;
        }

        .feature-number {
            font-size: 3rem;
            color: #d4af37;
            font-weight: 300;
            margin-bottom: 20px;
        }

        .feature h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #e5e5e5;
            font-weight: 300;
            text-transform: uppercase;
        }

        .feature p {
            color: #888;
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact {
            background: #000;
            text-align: center;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-top: 60px;
            align-items: start;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1px;
            background: #333;
        }

        .contact-item {
            background: #1a1a1a;
            padding: 40px 30px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: #222;
        }

        .contact-item h3 {
            color: #d4af37;
            margin-bottom: 15px;
            font-weight: 300;
            text-transform: uppercase;
            font-size: 1rem;
        }

        .contact-item p {
            color: #888;
            font-size: 0.9rem;
        }

        /* Contact Form */
        .contact-form {
            background: #1a1a1a;
            padding: 60px 40px;
            border: 1px solid #333;
            text-align: left;
        }

        .contact-form h3 {
            color: #d4af37;
            font-size: 1.8rem;
            margin-bottom: 40px;
            font-weight: 300;
            text-transform: uppercase;
            text-align: center;
        }

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

        .form-group label {
            display: block;
            color: #888;
            margin-bottom: 8px;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: #000;
            border: 1px solid #333;
            color: #e5e5e5;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #d4af37;
        }

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

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: transparent;
            border: 2px solid #d4af37;
            color: #d4af37;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

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

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #1a1a1a;
            border: 2px solid #d4af37;
            padding: 60px 40px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            animation: slideUp 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translate(-50%, -40%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        .modal-icon {
            font-size: 4rem;
            color: #d4af37;
            margin-bottom: 20px;
        }

        .modal h3 {
            color: #d4af37;
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 300;
            text-transform: uppercase;
        }

        .modal p {
            color: #888;
            font-size: 1.1rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .modal-close {
            background: transparent;
            border: 2px solid #d4af37;
            color: #d4af37;
            padding: 12px 30px;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: #d4af37;
            color: #000;
        }

        /* Footer */
        .footer {
            background: #000;
            border-top: 1px solid #333;
            padding: 60px 0 40px;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-links a {
            color: #888;
            text-decoration: none;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #d4af37;
        }

        .footer-info {
            color: #666;
            font-size: 0.85rem;
            line-height: 1.6;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .features {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .games-grid {
                grid-template-columns: 1fr;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .modal-content {
                padding: 40px 30px;
                margin: 20px;
            }

            .modal h3 {
                font-size: 1.5rem;
            }
        }