/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a4d7a;
    --secondary-blue: #2d6ba3;
    --accent-purple: #6b4c93;
    --light-blue: #a8d5e2;
    --cream: #f5f1e8;
    --dark-navy: #0f2d44;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --white: #ffffff;
    --shadow-light: rgba(26, 77, 122, 0.1);
    --shadow-medium: rgba(26, 77, 122, 0.2);
    --gradient-primary: linear-gradient(135deg, #1a4d7a 0%, #2d6ba3 50%, #6b4c93 100%);
    --gradient-soft: linear-gradient(135deg, #a8d5e2 0%, #f5f1e8 100%);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header and Navigation - Completely New Design */
.header {
    background: var(--dark-navy);
    box-shadow: 0 4px 20px var(--shadow-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-purple);
}

.navbar {
    padding: 1.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-brand h1 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.nav-brand a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-brand a:hover {
    color: var(--light-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 20px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    background: var(--primary-blue);
    color: var(--light-blue);
    transform: translateY(-2px);
}

.nav-menu a.active {
    background: var(--accent-purple);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(107, 76, 147, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section - New Design */
.hero {
    position: relative;
    min-height: 70vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 80px 20px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="800" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
    line-height: 1.2;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* Buttons - New Style */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    min-width: 200px;
    max-width: 300px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
}

.info-section .btn-secondary {
    background: var(--primary-blue);
    color: var(--white);
    border: 3px solid var(--primary-blue);
}

.info-section .btn-secondary:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-3px);
}

.info-section.reverse .btn-secondary {
    background: var(--primary-blue);
    color: var(--white);
    border: 3px solid var(--primary-blue);
}

.info-section.reverse .btn-secondary:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-3px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-blue), transparent);
}

.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-purple);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Arial', sans-serif;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(26, 77, 122, 0.1);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-purple);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(107, 76, 147, 0.3);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto;
    line-height: 2;
    text-align: justify;
    text-justify: inter-word;
}

/* Feature Cards - New Design */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--light-blue);
    box-shadow: 0 5px 20px var(--shadow-light);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    border-color: var(--secondary-blue);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
    display: block;
}

.feature-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    position: relative;
    padding-left: 15px;
}

.feature-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 25px;
    background: var(--secondary-blue);
    border-radius: 2px;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 2;
    font-size: 1.05rem;
    text-align: justify;
    text-justify: inter-word;
}

/* Info Sections */
.info-section {
    padding: 80px 0;
    background: var(--cream);
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-blue), transparent);
}

.info-section.reverse {
    background: var(--white);
}

.info-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-content h2 {
    color: var(--primary-blue);
    font-size: 2.4rem;
    margin-bottom: 25px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 20px;
    border-left: 5px solid var(--accent-purple);
    margin-left: -20px;
    text-shadow: 1px 1px 3px rgba(26, 77, 122, 0.1);
}

.info-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 2;
    font-size: 1.1rem;
    text-align: justify;
    text-justify: inter-word;
}

.info-content ul {
    list-style: none;
    margin: 25px 0;
}

.info-content ul li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 2;
}

.info-content ul li:before {
    content: "▸";
    position: absolute;
    left: 10px;
    color: var(--accent-purple);
    font-size: 1.2rem;
    font-weight: bold;
}

.article-content ul {
    margin: 30px 0;
    padding-left: 0;
}

.article-content ul li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 2;
    list-style: none;
}

.article-content ul li:before {
    content: "▸";
    position: absolute;
    left: 10px;
    color: var(--accent-purple);
    font-size: 1.2rem;
    font-weight: bold;
}

.info-image {
    background: var(--gradient-soft);
    border-radius: 25px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    overflow: hidden;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.placeholder-image {
    color: var(--text-medium);
    font-size: 1.3rem;
    opacity: 0.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Arial', sans-serif;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    flex: 0 1 auto;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
}

.hero .fade-in > div {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.hero .fade-in > div > a {
    text-align: center;
}

/* Article Content */
.article-content {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
}

.article-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.article-content h2 {
    position: relative;
    padding-left: 20px;
    border-left: 5px solid var(--accent-purple);
    margin-left: -20px;
}

.article-content h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin: 30px 0 15px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    position: relative;
    padding-left: 15px;
}

.article-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--secondary-blue);
    border-radius: 2px;
}

.article-image {
    margin: 50px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-medium);
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 122, 0.1) 0%, rgba(107, 76, 147, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    pointer-events: none;
}

.article-image:hover::before {
    opacity: 1;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.article-image:hover img {
    transform: scale(1.05);
}

.article-content h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin: 50px 0 25px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-purple);
    border-radius: 2px;
}

.article-content p {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 2;
    font-size: 1.1rem;
    text-align: justify;
    text-justify: inter-word;
}

.article-content p:first-of-type {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 2.1;
}

.article-content p:first-of-type::first-letter {
    font-size: 3.5rem;
    line-height: 1;
    float: left;
    padding-right: 8px;
    padding-top: 4px;
    color: var(--primary-blue);
    font-weight: 700;
}

.contact-form-wrapper p::first-letter,
.contact-info p::first-letter,
.article-content .contact-info p::first-letter,
.article-content .contact-form-wrapper p::first-letter,
.article-content.no-dropcap p::first-letter {
    font-size: inherit !important;
    line-height: inherit !important;
    float: none !important;
    padding: 0 !important;
    color: inherit !important;
    font-weight: inherit !important;
}

/* Grid Layouts */
.mechanics-grid,
.welfare-grid,
.biome-grid,
.economy-grid,
.staff-grid,
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.mechanic-card,
.welfare-card,
.biome-card,
.economy-card,
.staff-card,
.tip-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    padding: 35px;
    border-radius: 15px;
    border-top: 5px solid var(--accent-purple);
    transition: all 0.3s;
    box-shadow: 0 5px 20px var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.mechanic-card::before,
.welfare-card::before,
.biome-card::before,
.economy-card::before,
.staff-card::before,
.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-purple);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.mechanic-card:hover::before,
.welfare-card:hover::before,
.biome-card:hover::before,
.economy-card:hover::before,
.staff-card:hover::before,
.tip-card:hover::before {
    transform: scaleY(1);
}

.mechanic-card:hover,
.welfare-card:hover,
.biome-card:hover,
.economy-card:hover,
.staff-card:hover,
.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.mechanic-card h3,
.welfare-card h3,
.biome-card h3,
.economy-card h3,
.staff-card h3,
.tip-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.mechanic-card p,
.welfare-card p,
.biome-card p,
.economy-card p,
.staff-card p,
.tip-card p {
    color: var(--text-medium);
    line-height: 2;
    font-size: 1.05rem;
    text-align: justify;
    text-justify: inter-word;
}

/* Lists */
.modes-list,
.enrichment-list,
.climate-list,
.expense-list,
.strategy-list,
.design-tips {
    margin: 40px 0;
}

.mode-item,
.enrichment-item,
.climate-item,
.expense-item,
.strategy-item,
.tip-item {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 6px solid var(--secondary-blue);
    box-shadow: 0 3px 15px var(--shadow-light);
    transition: all 0.3s;
    position: relative;
}

.mode-item:hover,
.enrichment-item:hover,
.climate-item:hover,
.expense-item:hover,
.strategy-item:hover,
.tip-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px var(--shadow-medium);
}

.mode-item h3,
.enrichment-item h3,
.climate-item h3,
.expense-item h3,
.strategy-item h3,
.tip-item h3 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.mode-item p,
.enrichment-item p,
.climate-item p,
.expense-item p,
.strategy-item p,
.tip-item p {
    color: var(--text-medium);
    line-height: 2;
    font-size: 1.05rem;
    text-align: justify;
    text-justify: inter-word;
}

/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
}

.contact-info p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 2;
    font-size: 1.1rem;
    text-align: justify;
    text-justify: inter-word;
}

.contact-form-wrapper {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--light-blue);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(45, 107, 163, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-blue);
    flex-shrink: 0;
}

.form-group label[for="kvkk"],
.form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-group label:has(input[type="checkbox"]) span {
    flex: 1;
}

.form-group label:has(input[type="checkbox"]) a {
    color: var(--secondary-blue);
    text-decoration: underline;
}

.form-group label:has(input[type="checkbox"]) a:hover {
    color: var(--primary-blue);
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 4px solid var(--accent-purple);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--light-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    opacity: 0.85;
    line-height: 1.8;
    font-size: 1.05rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s;
    font-size: 1.05rem;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--light-blue);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--dark-navy);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        padding: 30px 0;
        border-top: 3px solid var(--accent-purple);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 15px 20px;
        border-radius: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .info-section .container,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .mechanics-grid,
    .welfare-grid,
    .biome-grid,
    .economy-grid,
    .staff-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 350px;
        min-width: auto;
    }

    .hero .btn-primary,
    .hero .btn-secondary {
        width: 100%;
        max-width: 350px;
        min-width: auto;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 60vh;
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 20px;
    }

    .content-section,
    .info-section {
        padding: 50px 0;
    }

    .article-content {
        padding: 30px 20px;
    }

    .article-content p:first-of-type::first-letter {
        font-size: 2.5rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .hero .fade-in > div {
        width: 100%;
    }

    .hero .fade-in > div > a {
        width: 100%;
        max-width: 100%;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 320px;
    max-width: 450px;
    border-left: 5px solid var(--secondary-blue);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.notification-success .notification-icon {
    background: var(--secondary-blue);
    color: var(--white);
}

.notification-error .notification-icon {
    background: #d32f2f;
    color: var(--white);
}

.notification-message {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.5;
}

.notification-success {
    border-left-color: var(--secondary-blue);
}

.notification-error {
    border-left-color: #d32f2f;
}

@media (max-width: 768px) {
    .notification {
        right: 15px;
        left: 15px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }
}

