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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
    color: #ffffff;
    min-height: 100vh;
}

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

header {
    margin-bottom: 40px;
    padding: 40px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.title-section {
    text-align: center;
    flex: 1;
}

.social-icons {
    position: absolute;
    top: 0;
    right: 0;
}

.twitter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid #ff6b35;
    border-radius: 50%;
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s ease;
}

.twitter-icon:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

header h1 {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffdd00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: #ff6b35;
    font-style: italic;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border: 3px solid #ff6b35;
}

.content {
    text-align: center;
    max-width: 800px;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.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(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

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

.feature p {
    color: #cccccc;
    margin: 0;
}

footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    margin-top: 60px;
    color: #888888;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .content h2 {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        align-items: center;
    }
    
    .social-icons {
        position: static;
        margin-top: 20px;
    }
}
