/* Define the color palette for easy changes */
:root {
    --bg-color: #0a0a0a;
    --primary-text: #e0e0e0;
    --secondary-text: #a0a0a0;
    --accent-color: #00bfff; /* Deep Sky Blue */
    --glass-bg: rgba(25, 25, 25, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated Gradient Background */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(
            -45deg,
            #0a0a0a,
            #1a001a,
            #001a1a,
            #0a0a0a
    );
    background-size: 400% 400%;
    animation: gradientBG 20s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header and Logo */
header {
    padding: 2rem;
    text-align: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-text);
}

.accent {
    color: var(--accent-color);
}

/* Main Content Area */
main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.hero-card h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.hero-card .tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--secondary-text);
    margin-bottom: 2.5rem;
}

/* Links and Buttons */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-text);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-button:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 191, 255, 0.3);
}

.link-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    color: var(--secondary-text);
    font-size: 0.9rem;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInAnimation 0.8s ease-out forwards;
}

@keyframes fadeInAnimation {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .hero-card h1 {
        font-size: 2.5rem;
    }
    .hero-card {
        padding: 2rem 1.5rem;
    }
}
/* In assets/style.css */

/* Header and Logo */
header {
    padding: 2rem;
    text-align: center;
}

.logo {
    /* This div will now act as a container for the image */
    display: inline-block;
    line-height: 0; /* Helps remove any extra vertical space */
}

/* This is the new rule to control the logo image size */
.logo img {
    max-height: 120px; /* Adjust this value to your liking */
    width: auto;      /* This is crucial for maintaining the aspect ratio */
    display: block;   /* Removes extra space below the image */
}

.accent {
    color: var(--accent-color);
}