@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* General Body Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    color: #e0e0e0;
    line-height: 1.6;
}

/* Main Container */
.container {
    max-width: 960px;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background-color: rgba(30, 30, 30, 0.9);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

/* Header */
header {
    text-align: center;
    padding: 3rem 0;
    border-bottom: 1px solid #444;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

header p {
    font-size: 1.2rem;
    color: #b0b0b0;
    font-weight: 300;
}

/* Main Content */
main {
    padding: 2.5rem 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Card Styles */
.card {
    background-color: #2c2c2c;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    border-color: #00aaff;
}

.card h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #00aaff;
    font-weight: 700;
}

.card p {
    color: #c0c0c0;
}

.card a {
    text-decoration: none;
    color: #00aaff;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.card a:hover {
    color: #33c6ff;
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid #444;
    font-size: 1rem;
    color: #999;
}

footer a {
    color: #00aaff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #33c6ff;
    text-decoration: underline;
}
