/* ============ Index Page Styles ============ */

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 20px;
    padding-top: 90px;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
}

:root {
    --primary-color: #ff8533;
    --bg-color: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-color: #ffffff;
}

.container {
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.profile-header img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    margin-bottom: 15px;
}

h1 {
    font-size: 24px;
    font-weight: 900;
    margin: 10px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bio {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-card {
    background-color: var(--card-bg);
    border: 1px solid #333;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 133, 51, 0.2);
}

.link-card i {
    font-size: 20px;
    width: 40px;
    color: var(--primary-color);
}

.link-card span {
    flex-grow: 1;
    font-weight: 700;
    text-align: center;
}

.thunder-icon {
    position: absolute;
    left: 15px;
    opacity: 0.1;
    font-size: 24px;
}

footer {
    margin-top: auto;
    font-size: 12px;
    color: #555;
    width: 100%;
    text-align: center;
    padding-top: 20px;
}

/* Light Mode */

body.light-mode {
    --bg-color: #f5f5f5;
    --card-bg: #ffffff;
    --text-color: #333333;
    background: radial-gradient(circle at center, #ffffff 0%, #f2f2f2 100%);
    color: var(--text-color);
}

body.light-mode .link-card {
    background-color: var(--card-bg);
    border: 1px solid #ddd;
    color: #333;
}

body.light-mode .link-card:hover {
    border-color: #0088aa;
    box-shadow: 0 5px 15px rgba(0, 136, 170, 0.2);
}
