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

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #ff6b35;
    min-height: 100vh;
}

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

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    position: relative;
}

.social-icon {
    position: absolute;
    top: 20px;
    right: 20px;
}

.twitter-link {
    display: inline-block;
    color: #ff6b35;
    transition: color 0.3s ease, transform 0.3s ease;
}

.twitter-link:hover {
    color: #1da1f2;
    transform: scale(1.1);
}

.twitter-icon {
    width: 32px;
    height: 32px;
}

header h1 {
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 3px 3px 0px #000;
    letter-spacing: 8px;
    margin-bottom: 10px;
    color: #ff6b35;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 3px;
    opacity: 0.8;
}

.pixel-art-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 3px solid #ff6b35;
}

.pixel-art {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.content {
    text-align: center;
    margin: 60px 0;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 0px #000;
}

.content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #cccccc;
}

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

.feature {
    background: rgba(255, 107, 53, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #ff6b35;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff6b35;
}

.feature p {
    color: #ffffff;
    font-size: 1rem;
}

footer {
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 2px solid #ff6b35;
    color: #888;
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .subtitle {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .content h2 {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

/* Glitch effect for the title */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

header h1:hover {
    animation: glitch 0.3s ease-in-out;
}
