/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* Body */
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0d0d0d;
    color: #f5f5f5;
    text-align: center;
}

/* Container */
.index-container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

/* Logo */
.logo {
    width: 160px;
    margin: 0 auto 30px;
    display: block;
}

/* Hero Card */
.hero-card {
    background-color: #1a1a1a;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.9);
}

/* Hero headings */
.hero-card h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}
.hero-card p {
    color: #ccc;
    margin-bottom: 25px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.hero-btn.secondary {
    background: #333;
}

.hero-btn.secondary:hover {
    background: #444;
}

/* Footer */
.footer {
    margin-top: 30px;
    font-size: 0.85rem;
    color: #888;
}
