/* General Styling & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0c0a18;
    color: #f0f0f0;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    line-height: 1.7;
    color: #c5c5c5;
}

/* Background Glow Effect (Lightweight) */
.background-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91, 52, 218, 0.2), rgba(12, 10, 24, 0) 70%);
    z-index: -1;
    pointer-events: none;
}


/* Header */
.site-header {
    padding: 20px;
    text-align: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 0 20px;
    text-align: center;
}

.hero-image-container {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Call-to-Action Buttons */
.cta-buttons {
    display: grid;
    gap: 15px;
}

.btn {
    display: block;
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(90deg, #5b34da, #a735c2);
    color: #ffffff;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-special {
    background: transparent;
    border: 2px solid #5b34da;
    color: #5b34da;
}

.btn-special:hover {
    background-color: #5b34da;
    color: #ffffff;
}

/* Content Section */
.content-section {
    padding: 40px 25px;
    text-align: justify;
    background-color: rgba(0, 0, 0, 0.2);
    margin: 30px 20px;
    border-radius: 12px;
}

.content-section h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Footer */
.site-footer {
    padding: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}