/* Ultra-modern sleek styling for content pages */
html {
    background: #000000;
    height: 100%;
}

html::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: -1;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    height: -webkit-fill-available;
    font-family: "Soho Gothic Pro", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-sizing: border-box;
    color: white;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    position: relative;
    top: auto;
    left: 0;
    width: 100%;
    flex: 1;
    padding-top: max(20px, env(safe-area-inset-top));
    box-sizing: border-box;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.page-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff90 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.4;
    font-family: "Soho Gothic Pro", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.page-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 60px;
    text-align: center;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.contact-section {
    background: rgba(0.5, 0.5, 0.5, 0.5);
    border-radius: 8px;
    padding: 40px;
    margin: 40px auto;
    max-width: 500px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.contact-section:hover {
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.contact-type {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    font-family: "Soho Gothic Pro", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-type span {
    /* Ensure only the spanned text gets the gradient, not the emojis */
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.85;
    font-weight: 400;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-email {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-width: 250px;
    letter-spacing: -0.005em;
    font-family: "Soho Gothic Pro", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-email::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.contact-email:hover::before {
    left: 100%;
}

.contact-email:hover {
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.3) 0%, rgba(0, 119, 181, 0.15) 100%);

    border-color: rgba(0, 78, 123, 0.3);
    color: #ffffff;

    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.15);

}

.contact-email:active {
    transform: translateY(0);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    margin: 30px auto;
    border: none;
    max-width: 200px;
}

@media (max-width: 768px) {
    /* Index page responsive */
    .content-wrapper.index-style {
        padding: 20px 16px;
    }
    
    .page-title {
        font-size: 3rem;
    }
    
    .page-title.index-size {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    /* Contact/About sections */
    .contact-section, .about-section {
        padding: 30px 24px;
        margin: 30px 20px;
        max-width: none;
    }
    
    .contact-type {
        font-size: 1.3rem;
    }
    
    .contact-description {
        font-size: 0.95rem;
    }
    
    .contact-email {
        font-size: 1rem;
        padding: 14px 28px;
        min-width: 200px;
    }
    
    .page-container {
        padding: 40px 20px;
    }
    
    /* Article responsive */
    .article-title {
        font-size: 1.6rem;
    }
    
    .article {
        padding: 24px;
        margin-bottom: 24px;
    }
    
    .article-sharing {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .sharing-buttons {
        gap: 8px;
    }
    
    .sharing-button {
        padding: 6px 12px;
        font-size: 0.75rem;
        min-width: 60px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-title.index-size {
        font-size: 2rem;
    }
    
    .contact-section, .about-section {
        padding: 24px 20px;
        margin: 24px 16px;
    }
    
    .contact-email {
        min-width: 180px;
        padding: 12px 24px;
    }
    
    .page-container {
        padding: 32px 16px;
    }
    
    /* Article responsive */
    .article-title {
        font-size: 1.4rem;
    }
}

.about-content {
    margin-top: 40px;
}

.about-section {
    background: rgba(0.5, 0.5, 0.5, 0.5);
    border-radius: 8px;
    padding: 24px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.about-section:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}

.section-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 12px;
    font-family: "Soho Gothic Pro", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.section-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 1.0;
}

/* === INDEX PAGE STYLES === */

/* Alternative content wrapper for index page */
.content-wrapper.index-style {
    position: relative;
    top: auto;
    flex: 1;
    margin-top: 60px;
    padding: 40px 20px;
}

.news-container {
    max-width: 800px;
    margin: 0 auto;
}

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

/* Unified page title - override for index with smaller size */
.page-title.index-size {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

/* Index page subtitle variant */
.page-subtitle.index-style {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.7;
    color: white;
    margin-bottom: 60px;
}

/* === UNIFIED CARD COMPONENT === */
.card, .article, .contact-section, .about-section {
    background: rgba(0.5, 0.5, 0.5, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Article-specific styling */
.article {
    background: rgba(0.5, 0.5, 0.5, 0.7);
    backdrop-filter: blur(10px);
    padding: 16px;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.article:last-child {
    margin-bottom: 0;
}

.article:hover {
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* Article content */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.article-header {
    margin-bottom: 24px;
}

.article-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: white;
    letter-spacing: -0.01em;
    line-height: 1.2;
    font-family: "Soho Gothic Pro", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.article-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-content {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.article-content p {
    margin: 0 0 20px 0;
}

.article-content p:last-child {
    margin-bottom: 0;
}

.article-content strong {
    color: #ffd700;
    font-weight: 600;
}

.article-content em {
    color: #ffd700;
    font-style: italic;
}

.article-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
}

/* Sharing functionality */
.article-sharing {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 16px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    gap: 16px;
    flex-wrap: wrap;
}

.sharing-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.sharing-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sharing-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 70px;
    justify-content: center;
}

.sharing-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.sharing-button.twitter:hover {
    background: rgba(29, 155, 240, 0.15);
    border-color: rgba(29, 155, 240, 0.3);
}

.sharing-button.linkedin:hover {
    background: rgba(0, 119, 181, 0.15);
    border-color: rgba(0, 119, 181, 0.3);
}

.sharing-button.facebook:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: rgba(24, 119, 242, 0.3);
}

.sharing-button.email:hover {
    background: rgba(0, 119, 181, 0.15);
    border-color: rgba(0, 119, 181, 0.3);
}

/* Loading state */
.loading {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

/* === CONSOLIDATED MEDIA QUERIES === */