body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #a0a0a0;
    background-color: #1a1a1a;
}

h1, h2, .coming-soon {
    font-family: 'Cinzel', serif;
    color: #e0e0e0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-section {
    background: url('https://via.placeholder.com/1500x800/222222/bbbbbb?text=Dark+Fantasy+Background') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #8a2be2; /* This is the new purple color */
}

.coming-soon {
    font-size: 6rem;
    font-weight: 700;
    color: #cc0000;
    margin: 20px 0;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1); opacity: 1; }
    to { transform: scale(1.05); opacity: 0.9; }
}


.hero-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.content-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 30px;
    background: #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border-left: 5px solid #8b0000;
}

.content-section h2 {
    text-align: center;
    color: #daa520;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.feature-item {
    background: #333333;
    padding: 25px;
    border-radius: 8px;
    flex: 1 1 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border-top: 3px solid #6a0000;
}

.feature-item h3 {
    color: #e0e0e0;
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
}

.contact-info a {
    color: #daa520;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
    color: #ffd700;
}

footer {
    text-align: center;
    padding: 25px;
    background-color: #111;
    color: #777;
    margin-top: 60px;
    border-top: 1px solid #333;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .coming-soon {
        font-size: 4rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .feature-list {
        flex-direction: column;
        align-items: center;
    }

    .content-section {
        margin: 30px auto;
        padding: 20px;
    }
}