/* Variables globales */
:root {
    --color-background: #0a0a0f;
    --color-background-light: #11111f;
    --color-text: #e8e8e8;
    --color-neon-red: #ff0055;
    --color-neon-green: #00ff88;
    --color-neon-blue: #0088ff;
    --color-accent: #2a2a3a;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: 'Orbitron', sans-serif;
    --transition-speed: 0.3s;
    --neon-glow: 0 0 10px rgba(0, 255, 136, 0.7);
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Reset y estilos base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

h1 {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

h2 {
    font-size: 3.2rem;
    letter-spacing: 0.05rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-title {
    position: relative;
    display: inline-block;
    margin: 0 auto 4rem;
    text-align: center;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.3rem;
    background: linear-gradient(90deg, var(--color-neon-red), var(--color-neon-green));
    box-shadow: var(--neon-glow);
    border-radius: 0.5rem;
}

/* Header y Navegación */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 5rem;
    height: 5rem;
    margin-right: 1rem;
    border-radius: 50%;
    border: 2px solid var(--color-neon-green);
    box-shadow: 0 0 8px var(--color-neon-green);
}

.logo-container h1 {
    font-size: 2.4rem;
    margin: 0;
    letter-spacing: 0.2rem;
    background: linear-gradient(90deg, var(--color-neon-green), var(--color-neon-blue));
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

nav ul {
    display: flex;
    gap: 2.5rem;
}

nav ul li a {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    text-transform: uppercase;
    padding: 0.8rem 1.5rem;
    letter-spacing: 0.1rem;
    position: relative;
    color: var(--color-text);
    transition: all var(--transition-speed) ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0.2rem;
    background: var(--color-neon-green);
    transition: width var(--transition-speed) ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--color-neon-green);
    text-shadow: 0 0 5px var(--color-neon-green);
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 80%;
}

/* Hero Section */
.hero {
    height: 85vh;
    background-image: url('images/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 15, 0.8), rgba(10, 10, 15, 0.9));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 80rem;
    padding: 0 2rem;
}

.hero h2 {
    font-size: 5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    text-shadow: 0 0 10px var(--color-neon-green);
    background: linear-gradient(90deg, var(--color-neon-red), var(--color-neon-green));
    -webkit-background-clip: text;
    color: transparent;
    animation: textGlow 3s infinite alternate;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--color-text);
    letter-spacing: 0.1rem;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 30px rgba(0, 255, 136, 0.6);
    }
}

/* Botones */
.btn-neon {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    background-color: transparent;
    color: var(--color-neon-green);
    border: 2px solid var(--color-neon-green);
    border-radius: 3rem;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-neon-green);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-neon:hover {
    color: var(--color-background);
    text-shadow: none;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
}

.btn-neon:hover::before {
    width: 100%;
}

.btn-submit {
    background: linear-gradient(45deg, var(--color-neon-red), var(--color-neon-green));
    color: var(--color-background);
    border: none;
    padding: 1.2rem 3rem;
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    border-radius: 3rem;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
    transition: all var(--transition-speed) ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.7);
}

/* Slider */
.slider-container {
    margin: 5rem auto;
    width: 100%;
    max-width: 120rem;
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 50rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
    border: none;
    border-radius: 50%;
    background-color: rgba(10, 10, 15, 0.7);
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-btn.prev {
    left: 2rem;
}

.slider-btn.next {
    right: 2rem;
}

.slider-btn:hover {
    background-color: rgba(10, 10, 15, 0.9);
    color: var(--color-neon-green);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px var(--color-neon-green);
}

/* Secciones de características */
.features {
    padding: 8rem 5%;
    background-color: var(--color-background-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background-color: rgba(20, 20, 30, 0.5);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(42, 42, 58, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.3rem;
    background: linear-gradient(90deg, var(--color-neon-red), var(--color-neon-green));
    opacity: 0;
    transition: all var(--transition-speed) ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    margin: 0 auto 2rem;
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--color-neon-green);
    color: var(--color-neon-green);
    transition: all var(--transition-speed) ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--color-neon-green);
    color: var(--color-background);
    box-shadow: 0 0 15px var(--color-neon-green);
}

.feature-card h3 {
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-card p {
    color: #b8b8b8;
    line-height: 1.7;
}

/* Posts en la página principal */
.latest-posts {
    padding: 8rem 5%;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.post-card {
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(42, 42, 58, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.post-image {
    height: 20rem;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-content h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: left;
}

.post-content p {
    margin-bottom: 2rem;
    color: #b8b8b8;
    text-align: left;
}

.read-more {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--color-neon-green);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: all var(--transition-speed) ease;
    margin-top: auto;
}

.read-more:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--color-neon-green);
    transform: translateX(10px);
}

.center-button {
    text-align: center;
    margin-top: 5rem;
}

/* Call to Action */
.cta {
    padding: 10rem 5%;
    background-image: url('images/4.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 15, 0.8), rgba(10, 10, 15, 0.9));
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 80rem;
    margin: 0 auto;
    padding: 5rem;
    border-radius: 1rem;
    background-color: rgba(20, 20, 30, 0.7);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(42, 42, 58, 0.5);
}

.cta h2 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
    color: var(--color-text);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.cta p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

/* Footer */
footer {
    background-color: var(--color-background-light);
    padding: 5rem 5% 2rem;
    color: var(--color-text);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-footer {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 2px solid var(--color-neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.footer-logo h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--color-neon-green), var(--color-neon-blue));
    -webkit-background-clip: text;
    color: transparent;
}

.footer-logo p {
    text-align: center;
    margin-bottom: 0.5rem;
}

.footer-links h4, .footer-legal h4, .footer-contact h4 {
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-links h4::after, .footer-legal h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.2rem;
    background: linear-gradient(90deg, var(--color-neon-red), var(--color-neon-green));
}

.footer-links ul, .footer-legal ul {
    text-align: center;
}

.footer-links ul li, .footer-legal ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a, .footer-legal ul li a {
    color: #b8b8b8;
    transition: all var(--transition-speed) ease;
}

.footer-links ul li a:hover, .footer-legal ul li a:hover {
    color: var(--color-neon-green);
}

.footer-contact p {
    text-align: center;
    margin-bottom: 1rem;
    color: #b8b8b8;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    color: var(--color-text);
    background-color: rgba(42, 42, 58, 0.8);
    transition: all var(--transition-speed) ease;
}

.social-icons a:hover {
    background-color: var(--color-neon-green);
    color: var(--color-background);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 1.4rem;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 120rem;
    padding: 2rem;
    background-color: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    border: 1px solid rgba(42, 42, 58, 0.5);
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.cookie-content {
    text-align: center;
}

.cookie-content p {
    margin-bottom: 2rem;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cookie-btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.cookie-btn.accept {
    background-color: var(--color-neon-green);
    color: var(--color-background);
    border: none;
}

.cookie-btn.customize, .cookie-btn.decline {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
}

.cookie-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn.accept:hover {
    background-color: #00e67a;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.cookie-more {
    color: var(--color-neon-green);
    font-size: 1.4rem;
    text-decoration: underline;
}

.cookie-more:hover {
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 8rem 0 5rem;
    background-color: var(--color-background-light);
}

.page-header h1 {
    margin-bottom: 1rem;
    font-size: 4.8rem;
    background: linear-gradient(90deg, var(--color-neon-red), var(--color-neon-green));
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.page-header p {
    font-size: 1.8rem;
    max-width: 60rem;
    margin: 0 auto;
}

/* About Page */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 8rem 5%;
}

.about-content {
    padding-right: 2rem;
}

.about-content h2 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
    text-align: left;
}

.about-content p {
    text-align: left;
    margin-bottom: 2rem;
    color: #b8b8b8;
}

.about-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    vertical-align: middle;
    border-radius: 1rem;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Team Section */
.team-section {
    padding: 8rem 5%;
    background-color: var(--color-background-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
    gap: 4rem;
    margin: 5rem auto;
}

.team-member {
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(42, 42, 58, 0.3);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.team-member img {
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    margin: 0 auto 2rem;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--color-neon-green);
}

.team-member h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.team-member p {
    margin-bottom: 1rem;
    color: #b8b8b8;
}

.team-member p:nth-of-type(1) {
    color: var(--color-neon-green);
    font-weight: bold;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: rgba(42, 42, 58, 0.8);
    color: var(--color-text);
    transition: all var(--transition-speed) ease;
}

.social-links a:hover {
    background-color: var(--color-neon-green);
    color: var(--color-background);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.5);
}

/* Values Section */
.values-section {
    padding: 8rem 5%;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    background-color: rgba(20, 20, 30, 0.5);
    padding: 4rem 3rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(42, 42, 58, 0.3);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.value-icon {
    margin: 0 auto 2.5rem;
    color: var(--color-neon-green);
    transition: all var(--transition-speed) ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    color: var(--color-neon-green);
    text-shadow: 0 0 10px var(--color-neon-green);
}

.value-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.value-card p {
    color: #b8b8b8;
}

/* Blog Page */
.blog-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 4rem;
    padding: 5rem 5% 8rem;
}

.blog-post {
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(42, 42, 58, 0.3);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.blog-post .post-image {
    height: 30rem;
}

.post-details {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 3rem;
    background-color: rgba(42, 42, 58, 0.3);
}

.post-date, .post-category {
    font-size: 1.4rem;
    color: #b8b8b8;
}

.post-category {
    color: var(--color-neon-green);
}

.post-text {
    padding: 3rem;
}

.post-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: left;
}

.post-text h2 a {
    color: var(--color-text);
    transition: all var(--transition-speed) ease;
}

.post-text h2 a:hover {
    color: var(--color-neon-green);
}

.post-text p {
    margin-bottom: 2rem;
    color: #b8b8b8;
    text-align: left;
}

/* Sidebar */
.sidebar {
    margin-top: 4rem;
}

.sidebar-widget {
    background-color: rgba(20, 20, 30, 0.5);
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(42, 42, 58, 0.3);
}

.sidebar-widget h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    text-align: left;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 5rem;
    height: 0.2rem;
    background: linear-gradient(90deg, var(--color-neon-red), var(--color-neon-green));
    box-shadow: var(--neon-glow);
}

.sidebar-widget ul li {
    margin-bottom: 1.5rem;
}

.sidebar-widget ul li:last-child {
    margin-bottom: 0;
}

.sidebar-widget ul li a {
    color: #b8b8b8;
    transition: all var(--transition-speed) ease;
    display: block;
    text-align: left;
}

.sidebar-widget ul li a:hover {
    color: var(--color-neon-green);
    transform: translateX(5px);
}

.popular-posts ul li a {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mini-post-img {
    width: 8rem;
    height: 6rem;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.mini-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-post-info h4 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.mini-post-info span {
    font-size: 1.2rem;
    color: #888;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag-cloud a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: rgba(42, 42, 58, 0.8);
    color: #b8b8b8;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    transition: all var(--transition-speed) ease;
}

.tag-cloud a:hover {
    background-color: var(--color-neon-green);
    color: var(--color-background);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.subscribe-form input {
    padding: 1.2rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(42, 42, 58, 0.8);
    background-color: rgba(20, 20, 30, 0.5);
    color: var(--color-text);
    font-size: 1.6rem;
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--color-neon-green);
    box-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.subscribe p {
    color: #b8b8b8;
    text-align: left;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    padding: 5rem 5%;
}

.contact-info {
    background-color: rgba(20, 20, 30, 0.5);
    padding: 4rem;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    height: fit-content;
    border: 1px solid rgba(42, 42, 58, 0.3);
}

.contact-info h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.contact-icon {
    margin-right: 2rem;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(42, 42, 58, 0.8);
    border-radius: 50%;
    color: var(--color-neon-green);
    flex-shrink: 0;
}

.contact-text {
    flex-grow: 1;
}

.contact-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.contact-text p {
    margin-bottom: 0.5rem;
    color: #b8b8b8;
    text-align: left;
}

.contact-form-container {
    background-color: rgba(20, 20, 30, 0.5);
    padding: 4rem;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(42, 42, 58, 0.3);
}

.contact-form-container h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.contact-form-container p {
    margin-bottom: 3rem;
    color: #b8b8b8;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.form-group:nth-last-child(2), .form-group:nth-last-child(1) {
    grid-column: span 2;
}

.form-group label {
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    color: var(--color-text);
    text-align: left;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.form-group.checkbox label a {
    color: var(--color-neon-green);
    text-decoration: underline;
}

.form-group input, .form-group textarea, .form-group select {
    padding: 1.2rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(42, 42, 58, 0.8);
    background-color: rgba(20, 20, 30, 0.5);
    color: var(--color-text);
    font-size: 1.6rem;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.social-connect {
    margin-top: 4rem;
    text-align: center;
}

.social-connect h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

/* Map Section */
.map-section {
    padding: 5rem 5% 8rem;
}

.map-container {
    width: 100%;
    height: 50rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(20, 20, 30, 0.5);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-placeholder p {
    position: absolute;
    background-color: rgba(10, 10, 15, 0.7);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--color-background-light);
    border-radius: 1rem;
    width: 90%;
    max-width: 50rem;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    padding: 4rem;
    text-align: center;
    animation: modalOpen 0.5s forwards;
}

@keyframes modalOpen {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: #888;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.close-modal:hover {
    color: var(--color-neon-red);
}

.thank-you-message svg {
    color: var(--color-neon-green);
    margin-bottom: 2rem;
}

.thank-you-message h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.thank-you-message p {
    margin-bottom: 1.5rem;
    color: #b8b8b8;
}

.thank-you-message a {
    color: var(--color-neon-green);
}

.thank-you-message a:hover {
    text-decoration: underline;
}

.modal-close {
    margin-top: 3rem;
}

/* Responsive Media Queries */
@media screen and (max-width: 1200px) {
    html {
        font-size: 60%;
    }

    .contact-section,
    .blog-content {
        grid-template-columns: 1fr;
    }

    .sidebar {
        margin-top: 0;
    }

    .blog-content .posts-grid {
        margin-bottom: 5rem;
    }
}

@media screen and (max-width: 900px) {
    html {
        font-size: 55%;
    }

    header {
        flex-direction: column;
        padding: 2rem 5%;
    }

    .logo-container {
        margin-bottom: 1.5rem;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding-right: 0;
        order: 2;
    }

    .about-image {
        order: 1;
        margin-bottom: 3rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group:nth-last-child(2), .form-group:nth-last-child(1) {
        grid-column: span 1;
    }

    .hero h2 {
        font-size: 4rem;
    }
}

@media screen and (max-width: 600px) {
    html {
        font-size: 50%;
    }

    .hero h2 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    nav ul {
        gap: 1rem;
    }

    nav ul li a {
        padding: 0.8rem 1rem;
        font-size: 1.4rem;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-btn {
        width: 100%;
    }
}
