body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #0f2027, #2c5364);
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
}

/* Header Styles */
header {
    padding: 1rem 0;
    background: rgba(15,32,39,0.9);
    position: relative;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffcc00 !important;
    text-decoration: none;
}

.navbar-brand span {
    color: #00e6e6;
    font-weight: 400;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1.1rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffcc00 !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    filter: invert(1);
}

/* Main Content Styles */
.landing {
    text-align: center;
    padding: 4rem 0;
    z-index: 2;
    position: relative;
}

.landing h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.landing h2 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #00e6e6;
    margin-bottom: 2rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

/* Article Cards */
.articles {
    margin: 3rem 0;
    z-index: 2;
    position: relative;
}

.article-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover img {
    transform: scale(1.05);
}

.article-card-body {
    padding: 1.5rem;
}

.article-card h3 {
    font-size: 1.25rem;
    color: #ffcc00;
    margin-bottom: 1rem;
    font-weight: 600;
}

.article-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.article-card .btn {
    background: linear-gradient(45deg, #ffcc00, #00e6e6);
    border: none;
    color: #222;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.article-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,204,0,0.4);
    color: #222;
    text-decoration: none;
}

/* Article Content */
.article-content {
    z-index: 2;
    position: relative;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.article-content h1 {
    color: #ffcc00;
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.article-content h2 {
    color: #00e6e6;
    margin: 2rem 0 1rem 0;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.article-content h3 {
    color: #ffcc00;
    margin: 1.5rem 0 1rem 0;
}

.article-content img {
    width: 100%;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.article-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.95);
}

.article-content a {
    color: #00e6e6;
    transition: color 0.3s ease;
}

.article-content a:hover {
    color: #ffcc00;
}

.article-meta {
    font-style: italic;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Teaser Section */
.teaser {
    margin: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.reportajes-flash {
    background: rgba(255,204,0,0.15);
    border-radius: 20px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    color: #fff;
    animation: flash 1.5s infinite alternate;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,204,0,0.3);
}

.flash-icon {
    font-size: 2rem;
    color: #ffcc00;
    animation: pulse 1.2s infinite alternate;
}

@keyframes flash {
    0% { box-shadow: 0 5px 20px rgba(0,0,0,0.3); }
    100% { box-shadow: 0 8px 30px rgba(255,204,0,0.4); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    background: rgba(15,32,39,0.9);
    position: relative;
    z-index: 2;
    margin-top: 4rem;
    backdrop-filter: blur(10px);
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .landing {
        padding: 2rem 0;
    }
    
    .article-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .reportajes-flash {
        padding: 0.75rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .flash-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .article-content {
        padding: 1rem;
        margin: 0.5rem;
    }
    
    .article-card-body {
        padding: 1rem;
    }
    
    .landing {
        padding: 1.5rem 0;
    }
}

/* Custom Bootstrap overrides */
.container-fluid {
    padding: 0;
}

.row {
    margin: 0;
}

/* List styling for article content */
.article-content ul, .article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Video wrapper for responsive videos */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
