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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background: #1a1a2e;
}

nav {
    background: #16213e;
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-bottom: 3px solid #4e2a84;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo::before {
    content: '';
    width: 50px;
    height: 50px;
    background-image: url('https://static.wixstatic.com/media/9fdb3b_a709f01d98994db2986f6d488ee0abb4~mv2.jpg/v1/fill/w_58,h_60,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/The_303_Logo_edited.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1.05rem;
    cursor: pointer;
}

.nav-links a:hover {
    color: #b6a0d7;
}

.hero {
    background: linear-gradient(135deg, #4e2a84 0%, #6a3fa6 50%, #8b5fd1 100%);
    color: white;
    padding: 6rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.05) 10px, rgba(255,255,255,0.05) 20px);
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.cta-button {
    background: #ff6b35;
    color: #fff;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.6);
    background: #ff5722;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #4e2a84, #8b5fd1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.articles-grid-preview, .articles-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.article-card {
    background: linear-gradient(135deg, #2d3561 0%, #1e2749 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: all 0.4s;
    cursor: pointer;
    border: 2px solid rgba(78,42,132,0.3);
}

.article-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(78,42,132,0.6);
    border-color: #8b5fd1;
}

.article-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #4e2a84 0%, #6a3fa6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.article-card:hover .article-image::before {
    left: 100%;
}

.article-content {
    padding: 1.5rem;
}

.article-category {
    color: #ff6b35;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.article-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
}

.article-excerpt {
    color: #b6a0d7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #8b5fd1;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.read-more:hover {
    gap: 1rem;
    color: #b6a0d7;
}

.view-all-button {
    background: linear-gradient(135deg, #ff6b35, #ff5722);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.view-all-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.6);
}

.page-header {
    background: linear-gradient(135deg, #4e2a84 0%, #6a3fa6 100%);
    color: white;
    padding: 2rem 5%;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.back-button {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.back-button:hover {
    background: white;
    color: #4e2a84;
    transform: translateX(-5px);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.podcasts-section {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    padding: 4rem 5%;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.podcast-card {
    background: linear-gradient(135deg, #2d3561 0%, #1e2749 100%);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: all 0.3s;
    border: 2px solid rgba(78,42,132,0.3);
    cursor: pointer;
    text-align: center;
}

.podcast-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: #ff6b35;
    box-shadow: 0 12px 35px rgba(255,107,53,0.4);
}

.podcast-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4e2a84, #8b5fd1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(78,42,132,0.4);
}

.podcast-title {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
}

.newsletter-footer {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    color: white;
    padding: 4rem 5%;
    border-top: 3px solid #4e2a84;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #8b5fd1, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #b6a0d7;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 2px solid #4e2a84;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: rgba(45,53,97,0.6);
    color: white;
    transition: all 0.3s;
}

.newsletter-input:focus {
    border-color: #8b5fd1;
    background: rgba(45,53,97,0.8);
    box-shadow: 0 0 15px rgba(139,95,209,0.3);
}

.newsletter-input::placeholder {
    color: #b6a0d7;
}

.newsletter-button {
    background: linear-gradient(135deg, #ff6b35, #ff5722);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.newsletter-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.6);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(78,42,132,0.3);
    opacity: 0.7;
}

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

.social-link {
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.social-link:hover {
    transform: scale(1.3) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(255,107,53,0.5));
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s;
}

.modal-content {
    background: linear-gradient(135deg, #2d3561 0%, #1e2749 100%);
    color: #f0f0f0;
    margin: 3% auto;
    padding: 3rem;
    border-radius: 16px;
    max-width: 800px;
    position: relative;
    animation: slideIn 0.3s;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
    border: 2px solid rgba(78,42,132,0.3);
}

.modal-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.podcast-modal {
    max-width: 600px;
    text-align: center;
}

.close {
    color: #b6a0d7;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.close:hover {
    color: #ff6b35;
    transform: rotate(90deg);
}

.success-message {
    display: none;
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    padding: 1rem;
    border-radius: 50px;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(76,175,80,0.4);
}

.success-message.show {
    display: block;
    animation: slideIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .articles-grid-preview, .articles-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
    .podcast-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; }
    .nav-links { gap: 1rem; font-size: 0.9rem; }
    .logo { font-size: 1.5rem; }
    .logo::before { width: 35px; height: 35px; }
    .newsletter-form { flex-direction: column; }
    .articles-grid-preview, .articles-grid-full { grid-template-columns: 1fr; }
    .podcast-grid { grid-template-columns: repeat(2, 1fr); }
    .page-header { flex-direction: column; align-items: flex-start; }
}