:root {
    /* Baby Blue Palette - Solid Colors Only */
    --primary-blue: #89CFF0;
    /* Classic Baby Blue */
    --hover-blue: #7ABBE0;
    /* Slightly darker for interactions */
    --dark-blue: #5B9BC0;
    /* For text/heavier elements */
    --white: #ffffff;
    --off-white: #F0F8FF;
    /* Alice Blue - very light tint */
    --text-main: #2D3748;
    --text-light: #718096;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--off-white);
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--hover-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Header */
header {
    background-color: var(--white);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(137, 207, 240, 0.15);
    /* Blue tinted shadow */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    background-color: var(--primary-blue);
    /* Solid Baby Blue Background */
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn-primary {
    background-color: var(--white);
    color: var(--primary-blue);
}

.hero .btn-primary:hover {
    background-color: var(--off-white);
}

/* ... (Footer styles) ... */

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    padding: 30px;
    border-radius: 12px;
    background-color: var(--off-white);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    margin-bottom: 15px;
    color: var(--dark-blue);
}

/* Mods Section */
.mods {
    padding: 80px 0;
    background-color: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.mods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Mod Card Component */
.mod-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(137, 207, 240, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(137, 207, 240, 0.3);
}

.mod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(137, 207, 240, 0.2);
}

.mod-image {
    height: 200px;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
}

.mod-content {
    padding: 24px;
}

.mod-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--off-white);
    color: var(--dark-blue);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.mod-title {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.mod-description {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.mod-card .btn {
    width: 100%;
    text-align: center;
}

/* Footer (existing) */
footer {
    background-color: var(--white);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

footer p {
    color: var(--text-light);
}

/* Legal Pages */
.legal-content {
    background-color: var(--white);
    padding: 80px 0;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 40px;
    text-align: center;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p,
.legal-content ul {
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: 1rem;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}