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

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e6ed;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Animated Stars Background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #ddd, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    from { transform: translateX(0); }
    to { transform: translateX(-200px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.main-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.8);
}

.hell-text {
    display: block;
    color: #ff4500;
    animation: glow-orange 2s ease-in-out infinite alternate;
}

.its-text {
    display: block;
    color: #ffd700;
    animation: glow-gold 2s ease-in-out infinite alternate 0.5s;
}

.damn-time {
    display: block;
    color: #ff6b6b;
    animation: glow-red 2s ease-in-out infinite alternate 1s;
}

@keyframes glow-orange {
    from { text-shadow: 0 0 20px rgba(255, 69, 0, 0.8), 0 0 30px rgba(255, 69, 0, 0.6); }
    to { text-shadow: 0 0 30px rgba(255, 69, 0, 1), 0 0 40px rgba(255, 69, 0, 0.8); }
}

@keyframes glow-gold {
    from { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6); }
    to { text-shadow: 0 0 30px rgba(255, 215, 0, 1), 0 0 40px rgba(255, 215, 0, 0.8); }
}

@keyframes glow-red {
    from { text-shadow: 0 0 20px rgba(255, 107, 107, 0.8), 0 0 30px rgba(255, 107, 107, 0.6); }
    to { text-shadow: 0 0 30px rgba(255, 107, 107, 1), 0 0 40px rgba(255, 107, 107, 0.8); }
}

.subtitle {
    font-size: 1.5rem;
    color: #888;
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 300;
}

.quote-container {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #ff4500;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.quote-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff4500, #ffd700, #ff6b6b, #ff4500);
    border-radius: 10px;
    z-index: -1;
    animation: border-glow 3s linear infinite;
}

@keyframes border-glow {
    0% { background: linear-gradient(45deg, #ff4500, #ffd700, #ff6b6b, #ff4500); }
    25% { background: linear-gradient(45deg, #ffd700, #ff6b6b, #ff4500, #ffd700); }
    50% { background: linear-gradient(45deg, #ff6b6b, #ff4500, #ffd700, #ff6b6b); }
    75% { background: linear-gradient(45deg, #ff4500, #ffd700, #ff6b6b, #ff4500); }
    100% { background: linear-gradient(45deg, #ffd700, #ff6b6b, #ff4500, #ffd700); }
}

.tychus-quote {
    font-size: 1.2rem;
    color: #e0e6ed;
    font-style: italic;
    text-align: center;
}

/* Hero Image */
.hero-image {
    flex: 0 0 400px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.armor-silhouette {
    width: 300px;
    height: 350px;
    background: linear-gradient(135deg, #2c3e50, #34495e, #2c3e50);
    border-radius: 20px 20px 50px 50px;
    position: relative;
    box-shadow: 
        0 0 30px rgba(255, 69, 0, 0.3),
        inset 0 0 20px rgba(255, 69, 0, 0.1);
    animation: armor-pulse 3s ease-in-out infinite;
}

.armor-silhouette::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #ff4500, #ff6b6b);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.8);
}

.armor-silhouette::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 40px;
    background: linear-gradient(90deg, #ff4500, #ffd700, #ff4500);
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

@keyframes armor-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(255, 69, 0, 0.3), inset 0 0 20px rgba(255, 69, 0, 0.1); }
    50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(255, 69, 0, 0.6), inset 0 0 30px rgba(255, 69, 0, 0.2); }
}

/* Content Sections */
.content {
    padding: 4rem 0;
}

.about-section,
.quotes-section,
.contact-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #ff4500;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.3);
}

.feature-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Quotes Carousel */
.quotes-carousel {
    position: relative;
    height: 150px;
    margin: 2rem 0;
    overflow: hidden;
}

.quote-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    text-align: center;
}

.quote-slide.active {
    opacity: 1;
}

.quote-slide p {
    font-size: 1.5rem;
    color: #ffd700;
    font-style: italic;
    margin-bottom: 1rem;
}

.quote-slide cite {
    color: #888;
    font-size: 1rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.carousel-btn {
    background: rgba(255, 69, 0, 0.8);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 69, 0, 1);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.info-item {
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ff4500;
    text-align: center;
}

.info-item strong {
    color: #ffd700;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 69, 0, 0.3);
    margin-top: 4rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        flex: none;
        margin-top: 2rem;
    }
    
    .armor-silhouette {
        width: 200px;
        height: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .about-section,
    .quotes-section,
    .contact-section {
        padding: 1.5rem;
    }
    
    .content h2 {
        font-size: 2rem;
    }
}
