/* Global Styles */
:root {
    --primary-color: #6366F1;
    --secondary-color: #8B5CF6;
    --accent-color: #F59E0B;
    --dark-color: #0F172A;
    --light-color: #FFFFFF;
    --gray-color: #F8FAFC;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--light-color);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ultra Modern Header Styles */
.navbar {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95), rgba(240, 147, 251, 0.95));
    padding: 0.8rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    z-index: 10000;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    z-index: -1;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--light-color) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.navbar-brand:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fff, #f0f0f0);
    transition: width 0.3s ease;
}

.navbar-brand:hover::after {
    width: 100%;
}

.nav-link {
    color: var(--light-color) !important;
    font-weight: 600;
    padding: 0.8rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    margin: 0 0.2rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    animation: dropdownSlide 0.3s ease;
    z-index: 9999 !important;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
}

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

.dropdown-item {
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-weight: 500;
    border-radius: 8px;
    margin: 0.2rem 0.5rem;
    position: relative;
    display: block;
    width: 100%;
}

.dropdown-item:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.language-selector .btn {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--light-color);
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.language-selector .btn::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;
}

.language-selector .btn:hover::before {
    left: 100%;
}

.language-selector .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* Hero Section - Ultra Modern Design */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: var(--light-color);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(255, 200, 100, 0.2) 0%, transparent 50%);
    animation: gradientShift 20s ease infinite;
}

.hero-section::after {
    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 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="white" stroke-width="0.3" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="200" height="200" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    animation: backgroundMove 30s linear infinite;
}

@keyframes gradientShift {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
    }
    33% {
        transform: translateX(30px) translateY(-30px) scale(1.1);
    }
    66% {
        transform: translateX(-20px) translateY(20px) scale(0.9);
    }
}

@keyframes backgroundMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-50px) translateY(-50px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-section h1 {
    font-weight: 900;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease-out;
    line-height: 1.1;
}

.hero-section .lead {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    opacity: 0.8;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.6s both;
    justify-content: center;
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out 0.8s both;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3), rgba(240, 147, 251, 0.3));
    border-radius: 25px;
    z-index: -1;
    animation: gentleGlow 4s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    z-index: -1;
    animation: subtleFloat 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero-image:hover img {
    transform: scale(1.05) rotate(2deg);
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gentleGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
        box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(102, 126, 234, 0.5);
    }
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-5px) scale(1.02);
        opacity: 0.3;
    }
}

.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-primary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Floating Crypto Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

/* Crypto Icons Background */
.crypto-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.1;
}

.crypto-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 1);
    animation: cryptoFloat 8s ease-in-out infinite;
}

.crypto-icon:nth-child(1) {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.crypto-icon:nth-child(2) {
    top: 25%;
    right: 8%;
    animation-delay: 1s;
}

.crypto-icon:nth-child(3) {
    top: 45%;
    left: 3%;
    animation-delay: 2s;
}

.crypto-icon:nth-child(4) {
    top: 55%;
    right: 5%;
    animation-delay: 3s;
}

.crypto-icon:nth-child(5) {
    top: 75%;
    left: 8%;
    animation-delay: 4s;
}

.crypto-icon:nth-child(6) {
    top: 85%;
    right: 12%;
    animation-delay: 5s;
}

/* Particle System */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 12s linear infinite;
}

.particle:nth-child(odd) {
    animation-duration: 15s;
}

.particle:nth-child(even) {
    animation-duration: 18s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-30px) rotate(180deg) scale(1.1);
    }
}

@keyframes cryptoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Section Styles */
.section-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    position: relative;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--gray-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Cards */
.coin-card, .news-card, .analysis-card {
    background-color: var(--light-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.coin-card:hover, .news-card:hover, .analysis-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.coin-card::before, .news-card::before, .analysis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.coin-card:hover::before, .news-card:hover::before, .analysis-card:hover::before {
    transform: scaleX(1);
}

.news-card img, .analysis-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.coin-card img {
    width: 80% !important;
}

/* Owl Carousel Customization */
.owl-nav button {
    background-color: var(--primary-color) !important;
    color: var(--light-color) !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    margin: 0 10px;
}

.owl-nav button:hover {
    background-color: var(--secondary-color) !important;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.footer h4 {
    color: var(--light-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer a {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-color);
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    transition: all 0.3s ease;
    padding-top: 0px;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header Mobile Styles */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .nav-link {
        padding: 0.6rem 1rem !important;
        margin: 0.1rem;
    }
    
    .language-selector {
        flex-direction: column;
        gap: 0.3rem;
        margin-top: 1rem;
    }
    
    .language-selector .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .dropdown-menu {
        margin-top: 0.3rem;
    }
    
    .dropdown-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        text-align: center;
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-image img {
        max-width: 90%;
    }
    
    .floating-element:nth-child(1) {
        width: 40px;
        height: 40px;
    }
    
    .floating-element:nth-child(2) {
        width: 60px;
        height: 60px;
    }
    
    .floating-element:nth-child(3) {
        width: 30px;
        height: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer .col-lg-3 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Additional About Section */
.additional-about {
    background-color: var(--gray-color);
}

.additional-about h2 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Button Styles */
.btn-outline-primary {
    color: var(--light-color);
    border-color: var(--light-color);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
} 

.icon-image {
    width: 60px;
}

.lang-image {
    width: 20px;
    height: 20px;
}

p {
    white-space: pre-line;
}

a {
    text-decoration: none;
    color: var(--dark-color);
}

.menu-image {
    width: 20px;
    height: 20px;
}

.article-abstract-title {
    font-size: 1em;
    height: 6em;
    line-height: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article-abstract-content {
    font-size: 0.8em;
    height: 6em;
    line-height: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.dropdown-item {
    text-align: left !important;
}

.list-unstyled {
    padding-left: 0 !important;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.pagination .page-item {
    list-style: none;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--light-color);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination .page-link:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.pagination .page-item.disabled .page-link {
    background-color: var(--gray-color);
    color: var(--text-secondary);
    border-color: var(--border-color);
    cursor: not-allowed;
}

.pagination .page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: none;
}


/* Search Results Styles */
.search-results {
    margin: 2rem 0;
    padding: 2rem 0;
}

.search-results-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.search-results-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.search-result-item {
    background-color: var(--light-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.search-result-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.search-result-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.search-result-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.search-result-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.search-result-category {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.search-result-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Loading States */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Articles Section */
.articles-section {
    background-color: var(--gray-color);
}

/* Share Buttons */
.share-buttons {
    background: var(--light-color);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.share-buttons h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.social-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-social {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border: none;
}

.btn-twitter {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
    color: white;
}

.btn-twitter:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
    color: white;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-telegram {
    background: linear-gradient(135deg, #0088cc, #006699);
    color: white;
}

.btn-telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
    color: white;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-instagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(188, 24, 136, 0.4);
    color: white;
}

.btn-instagram:hover::before {
    opacity: 1;
}

.btn-instagram i {
    position: relative;
    z-index: 1;
}

.btn-facebook {
    background: linear-gradient(135deg, #1877F2, #0A5FCC);
    color: white;
}

.btn-facebook:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
    color: white;
}

/* Search Section in Articles */
.search-section {
    margin-bottom: 2rem;
}

.search-box {
    background: var(--light-color);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.search-form-inline {
    margin: 0;
}

.search-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.search-input-inline {
    flex: 1;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-color);
}

.search-input-inline:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
    outline: none;
}

.search-btn-inline {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    color: var(--light-color);
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-btn-inline:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--light-color);
}

.search-btn-inline:focus {
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.article-meta {
    /* display: flex; */
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.news-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Badge Styles */
.badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .search-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .search-input-inline {
        border-radius: 10px;
        text-align: center;
    }
    
    .search-btn-inline {
        border-radius: 10px;
        justify-content: center;
        width: 100%;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .pagination .page-link {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .search-result-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}


.one-index {
    z-index: 1;
}

/* Ultra Modern About Section */
.about-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.about-section::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(102, 126, 234, 0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: backgroundMove 20s linear infinite;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0;
    text-align: start;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    /* animation: gentleGlow 3s ease-in-out infinite; */
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.why-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.why-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.why-card h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.why-card p {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 3rem 2rem;
    border-radius: 25px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-box h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-box p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.cta-box .btn {
    position: relative;
    z-index: 2;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.cta-box .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-heading {
        font-size: 1.8rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .why-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-box {
        padding: 2rem 1rem;
    }
    
    .cta-box h4 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-heading {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* Ultra Modern Top Coins Section */
.top-coins-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.top-coins-section::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 100 100"><defs><pattern id="coins" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23coins)"/></svg>');
    opacity: 0.3;
    animation: backgroundMove 30s linear infinite;
}

.top-coins-section .section-title {
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background-clip: text !important;
    background: var(--accent-color);
}

.top-coins-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.market-stats-bar {
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-coins-carousel {
    position: relative;
    z-index: 2;
}

/* Owl Carousel Styles */
.modern-coin-carousel {
    margin: 2rem 0;
}

.modern-coin-carousel .owl-stage-out {
    padding: 1rem 0;
}

.modern-coin-carousel .owl-item {
    padding: 0 1rem;
}

.modern-coin-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.modern-coin-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #667eea;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-coin-carousel .owl-nav button:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.modern-coin-carousel .owl-nav .owl-prev {
    margin-left: -25px;
}

.modern-coin-carousel .owl-nav .owl-next {
    margin-right: -25px;
}

.modern-coin-carousel .owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.modern-coin-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.modern-coin-carousel .owl-dots .owl-dot.active {
    background: white;
    transform: scale(1.2);
}

.modern-coin-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.modern-coin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.modern-coin-card:hover::before {
    transform: scaleX(1);
}

.modern-coin-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.coin-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.coin-icon {
    position: relative;
    margin-right: 1rem;
}

.coin-image {
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.modern-coin-card:hover .coin-image {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.coin-rank {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.coin-symbol {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.25rem 0;
}

.coin-name {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.coin-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 12px;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

.price-change {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.price-change.positive {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.price-change.negative {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.coin-stats {
    margin-bottom: 1.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row .stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

.stat-row .stat-value {
    font-size: 0.85rem;
    color: #2c3e50;
    font-weight: 600;
}

.coin-chart {
    margin-bottom: 1.5rem;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 10px;
    padding: 0.5rem;
}

.mini-chart {
    height: 100%;
    width: 100%;
}

.chart-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.coin-actions {
    display: flex;
    gap: 0.5rem;
}

.coin-actions .btn {
    flex: 1;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.view-all-section h4 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.view-all-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.view-all-section .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.view-all-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.market-insights {
    position: relative;
    z-index: 2;
}

.insight-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.insight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.insight-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.insight-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design for Top Coins Section */
@media (max-width: 768px) {
    .modern-coin-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .modern-coin-carousel .owl-nav .owl-prev {
        margin-left: -20px;
    }
    
    .modern-coin-carousel .owl-nav .owl-next {
        margin-right: -20px;
    }
    
    .modern-coin-carousel .owl-item {
        padding: 0 0.5rem;
    }
    
    .modern-coin-card {
        padding: 1rem;
    }
    
    .coin-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .coin-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .coin-price {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .coin-actions {
        flex-direction: column;
    }
    
    .view-all-section {
        padding: 2rem 1rem;
    }
    
    .view-all-section h4 {
        font-size: 1.5rem;
    }
}

/* ========================================
   LATEST SECTIONS STYLES
   ======================================== */

/* Latest News Section */
.latest-news-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.latest-news-section::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 100 100"><defs><pattern id="news" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23news)"/></svg>');
    opacity: 0.3;
    animation: backgroundMove 40s linear infinite;
}

.latest-news-section .section-title,
.latest-news-section .section-subtitle {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background-clip: text !important;
    background: var(--accent-color);
}

/* Latest Fundamentals Section */
.latest-fundamentals-section {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    position: relative;
    overflow: hidden;
}

.latest-fundamentals-section::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 100 100"><defs><pattern id="fundamentals" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M15,5 L25,15 L15,25 L5,15 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23fundamentals)"/></svg>');
    opacity: 0.3;
    animation: backgroundMove 35s linear infinite;
}

.latest-fundamentals-section .section-title,
.latest-fundamentals-section .section-subtitle {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background-clip: text !important;
    background: var(--accent-color);
}

/* Latest Technicals Section */
.latest-technicals-section {
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.latest-technicals-section::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 100 100"><defs><pattern id="technicals" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,2 18,18 2,18" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23technicals)"/></svg>');
    opacity: 0.3;
    animation: backgroundMove 45s linear infinite;
}

.latest-technicals-section .section-title,
.latest-technicals-section .section-subtitle {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background-clip: text !important;
    background: var(--accent-color);
}

/* Modern Article Carousel */
.modern-article-carousel {
    position: relative;
    z-index: 2;
}

.modern-article-carousel .owl-stage-out {
    padding: 1rem 0;
}

.modern-article-carousel .owl-item {
    padding: 0 1rem;
}

.modern-article-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.modern-article-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #667eea;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-article-carousel .owl-nav button:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.modern-article-carousel .owl-nav .owl-prev {
    margin-left: -25px;
}

.modern-article-carousel .owl-nav .owl-next {
    margin-right: -25px;
}

.modern-article-carousel .owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.modern-article-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.modern-article-carousel .owl-dots .owl-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Modern News Card */
.modern-news-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-news-card::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 ease;
}

.modern-news-card:hover::before {
    left: 100%;
}

.modern-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666;
    font-size: 0.85rem;
}

.news-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-tags {
    display: flex;
    gap: 0.3rem;
}

.tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #666;
}

.news-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.news-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Modern Analysis Card */
.modern-analysis-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modern-analysis-card::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 ease;
}

.modern-analysis-card:hover::before {
    left: 100%;
}

.modern-analysis-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.analysis-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.analysis-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.analysis-level {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666;
    font-size: 0.85rem;
}

.analysis-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.analysis-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.analysis-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.analysis-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.analysis-tags {
    display: flex;
    gap: 0.3rem;
}

.analysis-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #666;
}

.analysis-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.analysis-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Modern Technical Card */
.modern-technical-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-technical-card::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 ease;
}

.modern-technical-card:hover::before {
    left: 100%;
}

.modern-technical-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.technical-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.technical-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.technical-confidence {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666;
    font-size: 0.85rem;
}

.technical-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.technical-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.technical-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.technical-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.technical-tags {
    display: flex;
    gap: 0.3rem;
}

.technical-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #666;
}

.technical-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.technical-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Fixed Read More Button */
.btn-read-more {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white !important;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white !important;
    text-decoration: none;
}

.btn-share,
.btn-save,
.btn-alert {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.3);
    padding: 0.6rem;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-share:hover,
.btn-save:hover,
.btn-alert:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

/* Responsive Design for Latest Sections */
@media (max-width: 768px) {
    .modern-article-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .modern-article-carousel .owl-nav .owl-prev {
        margin-left: -20px;
    }
    
    .modern-article-carousel .owl-nav .owl-next {
        margin-right: -20px;
    }
    
    .modern-article-carousel .owl-item {
        padding: 0 0.5rem;
    }
    
    .modern-news-card,
    .modern-analysis-card,
    .modern-technical-card {
        padding: 1rem;
    }
    
    .news-actions,
    .analysis-actions,
    .technical-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-read-more {
        width: 100%;
    }
}

/* ========================================
   MODERN FOOTER STYLES
   ======================================== */

/* Modern Footer */
.modern-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.modern-footer::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 100 100"><defs><pattern id="footer" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(102,126,234,0.1)"/><circle cx="0" cy="0" r="0.5" fill="rgba(118,75,162,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer)"/></svg>');
    opacity: 0.3;
    animation: backgroundMove 60s linear infinite;
}

/* Footer Main */
.footer-main {
    position: relative;
    z-index: 2;
}

/* Footer Brand */
.footer-brand {
    padding-right: 2rem;
}

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

.brand-name {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.brand-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 1rem;
}

.brand-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.brand-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.brand-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 80px;
}

.brand-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.brand-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.brand-stats .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Footer Sections */
.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover i {
    opacity: 1;
    color: #667eea;
}

/* Footer Contact Info */
.footer-contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.2rem;
    color: #667eea;
    width: 20px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

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

.contact-value {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #667eea;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.newsletter-section h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.newsletter-btn {
    padding: 0.8rem 1.2rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Social Section */
.social-section h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    color: white;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    min-width: fit-content;
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.social-link.twitter {
    background: linear-gradient(45deg, #1DA1F2, #0d8bd9);
}

.social-link.twitter:hover {
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

.social-link i {
    font-size: 1.2rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-copyright i {
    color: #ff6b6b;
    animation: heartbeat 2s ease-in-out infinite;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.badge-item i {
    color: #667eea;
    font-size: 0.9rem;
}

/* Floating Elements */
.footer-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-crypto {
    position: absolute;
    font-size: 2rem;
    color: rgba(102, 126, 234, 0.1);
    font-weight: bold;
    animation: cryptoFloat 8s ease-in-out infinite;
}

.floating-crypto-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-crypto-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-crypto-3 {
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

.floating-crypto-4 {
    bottom: 20%;
    right: 25%;
    animation-delay: 6s;
}

.floating-crypto-5 {
    bottom: 30%;
    left: 5%;
    animation-delay: 1s;
}

/* Animations */
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes cryptoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-brand {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .brand-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .brand-stats .stat-item {
        min-width: 70px;
        padding: 0.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        justify-content: center;
    }
    
    .footer-badges {
        margin-top: 1rem;
    }
    
    .footer-copyright {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .floating-crypto {
        font-size: 1.5rem;
    }
    
    .social-links {
        justify-content: center !important;
    }
    
    .footer-links a {
        justify-content: flex-start !important;
        text-align: left !important;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 2rem 0;
    }
    
    .brand-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .brand-stats .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .footer-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-links {
        width: 100%;
        justify-content: center;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .brand-stats .stat-number {
        font-size: 1.2rem;
    }
    
    .brand-stats .stat-label {
        font-size: 0.7rem;
    }
    
    .social-link {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .badge-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

/* ========================================
   WHY CHOOSE BITMORPHO SECTION
   ======================================== */

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::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 100 100"><defs><pattern id="why" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="0" cy="0" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23why)"/></svg>');
    opacity: 0.3;
    animation: backgroundMove 50s linear infinite;
}

.why-choose-section .section-title,
.why-choose-section .section-subtitle {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background-clip: text !important;
    background: var(--accent-color);
}

/* Why Content */
.why-content {
    position: relative;
    z-index: 2;
}

.why-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.why-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.why-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.why-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.why-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.why-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: block;
}

.why-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Why Image Container */
.why-image-container {
    position: relative;
    z-index: 2;
}

.why-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.why-main-image:hover {
    transform: scale(1.02);
}

.floating-features {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.feature-badge {
    width: 150px;
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #333;
    animation: float 3s ease-in-out infinite;
}

.feature-badge i {
    color: #667eea;
    font-size: 1.2rem;
}

.feature-badge-1 {
    left: -10%;
    animation-delay: 0s;
}

.feature-badge-2 {
    right: -15%;
    animation-delay: 1s;
}

.feature-badge-3 {
    left: 10%;
    animation-delay: 2s;
}

/* Why Features Grid */
.why-features-grid {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
}

.why-feature-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.why-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.why-feature-card:hover::before {
    left: 100%;
}

.why-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.why-feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.why-feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.why-feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.feature-metric {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Trust Indicators */
.trust-indicators {
    position: relative;
    z-index: 2;
}

.trust-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.trust-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.trust-item i {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.trust-item h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Why CTA Box */
.why-cta-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.why-cta-box h4 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.why-cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.why-cta-box .btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.why-cta-box .btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.why-cta-box .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    color: white;
}

.why-cta-box .btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.why-cta-box .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Design for Why Choose Section */
@media (max-width: 768px) {
    .why-heading {
        font-size: 2rem;
    }
    
    .why-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .why-stats .stat-item {
        min-width: 100px;
        padding: 0.8rem;
    }
    
    .why-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .feature-badge {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .feature-badge-1 {
        left: -5%;
    }
    
    .feature-badge-2 {
        right: -5%;
    }
    
    .feature-badge-3 {
        left: 5%;
    }
    
    .why-feature-card {
        padding: 1.5rem;
    }
    
    .why-feature-card .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .why-cta-box {
        padding: 2rem 1rem;
    }
    
    .why-cta-box h4 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .why-cta-box .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stat-card {
        padding: 1rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .coin-price {
        padding: 0.75rem;
    }
    
    .price-value {
        font-size: 1.2rem;
    }
    
    .insight-card {
        padding: 1.5rem 1rem;
    }
}


.owl-theme .owl-dots .owl-dot span {
    margin-right: auto !important;
    margin-left: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* ========================================
   MODERN ABOUT PAGE SECTIONS
   ======================================== */

/* Modern About Hero Section */
.modern-about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.modern-about-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 100 100"><defs><pattern id="about" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="0" cy="0" r="2" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23about)"/></svg>');
    opacity: 0.3;
    animation: backgroundMove 60s linear infinite;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: gentleGlow 3s ease-in-out infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: slideInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 300;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.4s both;
    text-align: justify;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    display: block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background-clip: text !important;
    background: white;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.8s both;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.hero-actions .btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.hero-actions .btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.hero-actions .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

/* Contact Page CSS */
.modern-contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.modern-contact-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 100 100"><defs><pattern id="contact-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    animation: backgroundMove 20s ease-in-out infinite;
}

.modern-contact-hero .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.modern-contact-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modern-contact-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.modern-contact-hero .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modern-contact-hero .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.modern-contact-hero .hero-stats .stat-item {
    text-align: center;
}

.modern-contact-hero .hero-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
}

.modern-contact-hero .hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.modern-contact-hero .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modern-contact-hero .hero-image-container {
    position: relative;
}

.modern-contact-hero .hero-image {
    position: relative;
    z-index: 2;
    animation: slideInRight 1s ease-out;
}

.modern-contact-hero .hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
    animation: gentleGlow 3s ease-in-out infinite;
}

.modern-contact-hero .floating-features {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Modern Contact Info Section */
.modern-contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.modern-contact-info .section-badge {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.modern-contact-info .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.modern-contact-info .section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 3rem;
}

.modern-contact-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.modern-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modern-contact-card .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.modern-contact-card .contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.modern-contact-card .contact-description {
    color: #718096;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modern-contact-card .contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.modern-contact-card .contact-link:hover {
    color: #5a67d8;
    transform: translateX(5px);
}

.modern-contact-card .contact-features {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.modern-contact-card .feature-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.contact-option-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.contact-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-option-card .option-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.2rem;
}

.contact-option-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-option-card p {
    color: #718096;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Modern Contact Form Section */
.modern-contact-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.modern-contact-form .section-badge {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.modern-contact-form .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.modern-contact-form .section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 3rem;
}

.modern-form-container {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modern-contact-form .form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-contact-form .form-label i {
    color: #667eea;
    width: 16px;
}

.modern-input {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.modern-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
    outline: none;
}

.modern-input::placeholder {
    color: #a0aec0;
}

.character-count {
    text-align: right;
    font-size: 0.8rem;
    color: #718096;
    margin-top: 0.5rem;
}

.modern-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.modern-submit-btn .btn-loading {
    display: none;
}

.modern-submit-btn.loading .btn-text {
    display: none;
}

.modern-submit-btn.loading .btn-loading {
    display: inline;
}

.contact-form-info {
    padding-left: 2rem;
}

.contact-form-info .info-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-form-info .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-form-info .info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.1rem;
}

.contact-form-info .info-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-form-info .info-card p {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .modern-contact-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .modern-contact-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modern-contact-hero .hero-actions {
        flex-direction: column;
    }
    
    .contact-form-info {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .modern-form-container {
        padding: 1.5rem;
    }
}

/* FAQ Page CSS */
.modern-faqs-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.modern-faqs-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 100 100"><defs><pattern id="faq-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>');
    animation: backgroundMove 20s ease-in-out infinite;
}

.modern-faqs-hero .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.modern-faqs-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modern-faqs-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.modern-faqs-hero .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modern-faqs-hero .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.modern-faqs-hero .hero-stats .stat-item {
    text-align: center;
}

.modern-faqs-hero .hero-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
}

.modern-faqs-hero .hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.modern-faqs-hero .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modern-faqs-hero .hero-image-container {
    position: relative;
}

.modern-faqs-hero .hero-image {
    position: relative;
    z-index: 2;
    animation: slideInRight 1s ease-out;
}

.modern-faqs-hero .hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
    animation: gentleGlow 3s ease-in-out infinite;
}

.modern-faqs-hero .floating-features {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Modern FAQ Categories */
.modern-faqs-categories {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.modern-faqs-categories .section-badge {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.modern-faqs-categories .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.modern-faqs-categories .section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 3rem;
}

.modern-category-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.modern-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.modern-category-card:hover::before {
    left: 100%;
}

.modern-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modern-category-card.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.modern-category-card.active .category-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.modern-category-card.active .category-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.modern-category-card .category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.modern-category-card .category-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.modern-category-card.active .category-content h3 {
    color: white;
}

.modern-category-card .category-content p {
    color: #718096;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modern-category-card.active .category-content p {
    color: rgba(255, 255, 255, 0.8);
}

.modern-category-card .category-count {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.modern-category-card .category-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #667eea;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.modern-category-card:hover .category-arrow {
    transform: translateX(5px);
}

.modern-category-card.active .category-arrow {
    color: white;
}

/* Modern FAQ Questions */
.modern-faqs-questions {
    background: white;
    position: relative;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-title i {
    color: #667eea;
    font-size: 1.5rem;
}

.category-description {
    color: #718096;
    font-size: 1.1rem;
    margin: 0;
}

.stat-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.modern-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
}

.faq-question:hover {
    background: rgba(102, 126, 234, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    text-align: left;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Modern FAQ Contact */
.modern-faqs-contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.modern-faqs-contact .contact-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.1rem;
    color: #718096;
    margin: 0;
}

.contact-options {
    margin-bottom: 3rem;
}

.contact-option {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-option:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.2rem;
}

.contact-option h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-option p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.contact-stats .stat-item {
    text-align: center;
}

.contact-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.contact-stats .stat-label {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 0.25rem;
}

/* Responsive Design for FAQ Page */
@media (max-width: 768px) {
    .modern-faqs-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .modern-faqs-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modern-faqs-hero .hero-actions {
        flex-direction: column;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-header {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1rem 1.5rem;
    }
}

.hero-image-container {
    position: relative;
    animation: slideInRight 1s ease-out;
}

/* Rules Page CSS */
.modern-rules-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
}

/* Ensure header appears above rules hero */
.rules-page .navbar {
    z-index: 10001 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

/* Privacy Page CSS */
.modern-privacy-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
}

/* Ensure header appears above privacy hero */
.privacy-page .navbar {
    z-index: 10001 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

.modern-privacy-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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="90" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.modern-privacy-hero .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease-out;
}

.modern-privacy-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.modern-privacy-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 300;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.modern-privacy-hero .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.modern-privacy-hero .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.modern-privacy-hero .hero-stats .stat-item {
    text-align: center;
}

.modern-privacy-hero .hero-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
}

.modern-privacy-hero .hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.modern-privacy-hero .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 1s both;
}

.modern-privacy-hero .hero-image-container {
    position: relative;
}

.modern-privacy-hero .hero-image {
    position: relative;
    z-index: 2;
    animation: slideInRight 1s ease-out;
}

.modern-privacy-hero .hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-radius: 20px;
    z-index: -1;
    animation: rotate 20s linear infinite;
}

.modern-privacy-hero .floating-features {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.modern-privacy-hero .feature-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.3rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 400;
    gap: 0.2rem;
    color: white;
    display: flex;
    align-items: center;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modern-privacy-hero .feature-badge-1 {
    top: 5%;
    right: -5%;
    animation-delay: 0s;
}

.modern-privacy-hero .feature-badge-2 {
    bottom: 10%;
    left: -8%;
    animation-delay: 2s;
}

.modern-privacy-hero .feature-badge-3 {
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

/* Modern Privacy Content */
.modern-privacy-content {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.modern-privacy-content::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 100 100"><defs><pattern id="privacy-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(102,126,234,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23privacy-pattern)"/></svg>');
    opacity: 0.5;
}

.modern-privacy-nav {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 2rem;
}

.modern-privacy-nav .privacy-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    border: 1px solid transparent;
}

.modern-privacy-nav .privacy-nav-item:hover {
    background: rgba(102, 126, 234, 0.05);
    border-color: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.modern-privacy-nav .privacy-nav-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.modern-privacy-nav .nav-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.modern-privacy-nav .privacy-nav-item.active .nav-icon {
    background: rgba(255, 255, 255, 0.2);
}

.modern-privacy-nav .nav-content {
    flex: 1;
}

.modern-privacy-nav .nav-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.modern-privacy-nav .privacy-nav-item.active .nav-content h4 {
    color: white;
}

.modern-privacy-nav .nav-content p {
    font-size: 0.8rem;
    color: #718096;
    margin: 0;
    line-height: 1.4;
}

.modern-privacy-nav .privacy-nav-item.active .nav-content p {
    color: rgba(255, 255, 255, 0.8);
}

.modern-privacy-nav .nav-arrow {
    color: #667eea;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.modern-privacy-nav .privacy-nav-item:hover .nav-arrow {
    transform: translateX(3px);
}

.modern-privacy-nav .privacy-nav-item.active .nav-arrow {
    color: white;
}

/* Privacy Sections */
.privacy-section {
    display: none;
}

.privacy-section.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.privacy-content-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-card {
    padding: 2rem;
}

.privacy-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.privacy-card .card-header i {
    font-size: 2rem;
    color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-card .card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.privacy-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.privacy-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.privacy-item .privacy-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.privacy-item .privacy-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.privacy-item .privacy-text p {
    color: #718096;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-item .privacy-text ul {
    list-style: none;
    padding: 0;
}

.privacy-item .privacy-text ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.privacy-item .privacy-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Modern Privacy Contact */
.modern-privacy-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.modern-privacy-contact::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 100 100"><defs><pattern id="contact-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    opacity: 0.3;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.option-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

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

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-stats .stat-item {
    text-align: center;
}

.contact-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* Privacy Page Responsive */
@media (max-width: 768px) {
    .modern-privacy-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .modern-privacy-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modern-privacy-hero .hero-actions {
        flex-direction: column;
    }
    
    .contact-header {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .contact-stats {
        gap: 2rem;
    }
    
    .privacy-item {
        flex-direction: column;
        text-align: center;
    }
    
    .modern-privacy-nav {
        position: static;
        margin-bottom: 2rem;
    }
}

/* Privacy Button Styles */
.modern-privacy-hero .hero-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid transparent;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.modern-privacy-hero .hero-actions .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.modern-privacy-hero .hero-actions .btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    font-weight: 600;
    transition: all 0.3s ease;
}

.modern-privacy-hero .hero-actions .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.contact-option .btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-option .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* ========================================
   MODERN COIN PAGE STYLES
   ======================================== */

/* Modern Coin Hero */
.modern-coin-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
}

/* Ensure header appears above coin hero */
.coin-page .navbar {
    z-index: 10001 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

.modern-coin-hero .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease-out;
}

.modern-coin-hero .hero-badge .coin-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.modern-coin-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.modern-coin-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 300;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.modern-coin-hero .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.modern-coin-hero .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.modern-coin-hero .hero-stats .stat-item {
    text-align: center;
}

.modern-coin-hero .hero-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-right: auto !important;
    margin-left: auto !important;
}

.modern-coin-hero .hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    margin-right: auto !important;
    margin-left: auto !important;
}

.modern-coin-hero .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 1s both;
    justify-content: center;
}

.modern-coin-hero .hero-image-container {
    position: relative;
}

.modern-coin-hero .hero-image {
    position: relative;
    z-index: 2;
    animation: slideInRight 1s ease-out;
}

.modern-coin-hero .hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-radius: 20px;
    z-index: -1;
    animation: rotate 20s linear infinite;
}

.modern-coin-hero .floating-features {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.modern-coin-hero .feature-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.3rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 400;
    gap: 0.2rem;
    color: white;
    display: flex;
    align-items: center;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modern-coin-hero .feature-badge-1 {
    top: 5%;
    right: -5%;
    animation-delay: 0s;
}

.modern-coin-hero .feature-badge-2 {
    bottom: 10%;
    left: -8%;
    animation-delay: 2s;
}

.modern-coin-hero .feature-badge-3 {
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

/* Modern Coin Sections */
.modern-coin-news,
.modern-coin-fundamentals,
.modern-coin-technicals {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.modern-coin-news::before,
.modern-coin-fundamentals::before,
.modern-coin-technicals::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 100 100"><defs><pattern id="coin-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(102,126,234,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23coin-pattern)"/></svg>');
    opacity: 0.5;
}

.modern-coin-news .section-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.modern-coin-fundamentals .section-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.modern-coin-technicals .section-badge {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

/* Modern Article Cards */
.modern-article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modern-article-card .article-header {
    padding: 1.5rem 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modern-article-card .article-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.modern-article-card .article-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #718096;
    font-size: 0.8rem;
}

.modern-article-card .article-content {
    padding: 1rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.modern-article-card .article-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modern-article-card .article-brief {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modern-article-card .article-footer {
    padding: 0 1.5rem 1.5rem;
    z-index: 2;
}

/* Coin Page Button Styles */
.modern-coin-hero .hero-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid transparent;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.modern-coin-hero .hero-actions .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.modern-coin-hero .hero-actions .btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    font-weight: 600;
    transition: all 0.3s ease;
}

.modern-coin-hero .hero-actions .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Coin Page Responsive */
@media (max-width: 768px) {
    .modern-coin-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .modern-coin-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modern-coin-hero .hero-actions {
        flex-direction: column;
        justify-content: center;
    }
    
    .modern-article-card .article-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

/* ========================================
   MODERN CATEGORY PAGE STYLES
   ======================================== */

/* Modern Category Hero */
.modern-category-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
}

/* Ensure header appears above category hero */
.category-page .navbar {
    z-index: 10001 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

.modern-category-hero .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease-out;
}

.modern-category-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.modern-category-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 300;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.modern-category-hero .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.modern-category-hero .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.modern-category-hero .hero-stats .stat-item {
    text-align: center;
}

.modern-category-hero .hero-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
}

.modern-category-hero .hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.modern-category-hero .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 1s both;
    justify-content: center;
}

.modern-category-hero .hero-image-container {
    position: relative;
}

.modern-category-hero .hero-image {
    position: relative;
    z-index: 2;
    animation: slideInRight 1s ease-out;
}

.modern-category-hero .hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-radius: 20px;
    z-index: -1;
    animation: rotate 20s linear infinite;
}

.modern-category-hero .floating-features {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.modern-category-hero .feature-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.3rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 400;
    gap: 0.2rem;
    color: white;
    display: flex;
    align-items: center;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modern-category-hero .feature-badge-1 {
    top: 5%;
    right: -5%;
    animation-delay: 0s;
}

.modern-category-hero .feature-badge-2 {
    bottom: 10%;
    left: -8%;
    animation-delay: 2s;
}

.modern-category-hero .feature-badge-3 {
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

/* Modern Category Sections */
.modern-category-articles,
.modern-category-coins {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.modern-category-articles::before,
.modern-category-coins::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 100 100"><defs><pattern id="category-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(102,126,234,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23category-pattern)"/></svg>');
    opacity: 0.5;
}

.modern-category-articles .section-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.modern-category-coins .section-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

/* Coin Section Styles */
.coin-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.coin-header {
    text-align: center;
    margin-bottom: 2rem;
}

.coin-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.coin-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.coin-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

/* Category Page Button Styles */
.modern-category-hero .hero-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid transparent;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.modern-category-hero .hero-actions .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.modern-category-hero .hero-actions .btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    font-weight: 600;
    transition: all 0.3s ease;
}

.modern-category-hero .hero-actions .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Category Page Responsive */
@media (max-width: 768px) {
    .modern-category-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .modern-category-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modern-category-hero .hero-actions {
        flex-direction: column;
        justify-content: center;
    }
    
    .coin-info {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .coin-section {
        padding: 1.5rem;
    }
}

.modern-rules-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 100 100"><defs><pattern id="rules-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23rules-pattern)"/></svg>');
    animation: backgroundMove 20s ease-in-out infinite;
}

.modern-rules-hero .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.modern-rules-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modern-rules-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.modern-rules-hero .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modern-rules-hero .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.modern-rules-hero .hero-stats .stat-item {
    text-align: center;
}

.modern-rules-hero .hero-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
}

.modern-rules-hero .hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.modern-rules-hero .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modern-rules-hero .hero-image-container {
    position: relative;
}

.modern-rules-hero .hero-image {
    position: relative;
    z-index: 2;
    animation: slideInRight 1s ease-out;
}

.modern-rules-hero .hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
    animation: gentleGlow 3s ease-in-out infinite;
}

.modern-rules-hero .floating-features {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.modern-rules-hero .feature-badge {
    border-radius: 8px;
    padding: 0.3rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 400;
    gap: 0.2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.9;
}

.modern-rules-hero .feature-badge-1 {
    top: 5%;
    right: -5%;
}

.modern-rules-hero .feature-badge-2 {
    bottom: 10%;
    left: -8%;
}

.modern-rules-hero .feature-badge-3 {
    top: 50%;
    right: 5%;
}

/* Modern Rules Content */
.modern-rules-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.modern-rules-content .section-badge {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.modern-rules-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.modern-rules-content .section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 3rem;
}

/* Modern Rules Navigation */
.modern-rules-nav {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 2rem;
}

.modern-rules-nav .rules-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    border: 1px solid transparent;
}

.modern-rules-nav .rules-nav-item:hover {
    background: rgba(102, 126, 234, 0.05);
    border-color: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.modern-rules-nav .rules-nav-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.modern-rules-nav .nav-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.modern-rules-nav .rules-nav-item.active .nav-icon {
    background: rgba(255, 255, 255, 0.2);
}

.modern-rules-nav .nav-content {
    flex: 1;
}

.modern-rules-nav .nav-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.modern-rules-nav .rules-nav-item.active .nav-content h4 {
    color: white;
}

.modern-rules-nav .nav-content p {
    font-size: 0.8rem;
    color: #718096;
    margin: 0;
    line-height: 1.4;
}

.modern-rules-nav .rules-nav-item.active .nav-content p {
    color: rgba(255, 255, 255, 0.8);
}

.modern-rules-nav .nav-arrow {
    color: #667eea;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.modern-rules-nav .rules-nav-item:hover .nav-arrow {
    transform: translateX(3px);
}

.modern-rules-nav .rules-nav-item.active .nav-arrow {
    color: white;
}

/* Rules Sections */
.rules-section {
    display: none;
}

.rules-section.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: start;
}

.section-title i {
    color: #667eea;
    font-size: 1.5rem;
}

.section-description {
    color: #718096;
    font-size: 1.1rem;
    margin: 0;
}

.section-badge .badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Rules Cards */
.rules-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rule-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.5s ease;
}

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

.rule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.rule-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.rule-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.rule-content p {
    color: #718096;
    line-height: 1.7;
    margin: 0;
}

/* Modern Rules Contact */
.modern-rules-contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.modern-rules-contact .contact-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.1rem;
    color: #718096;
    margin: 0;
}

.contact-options {
    margin-bottom: 3rem;
}

.contact-option {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-option:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.2rem;
}

.contact-option h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-option p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.contact-stats .stat-item {
    text-align: center;
}

.contact-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.contact-stats .stat-label {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 0.25rem;
}

/* Rules Page Button Styles */
.modern-rules-hero .hero-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid transparent;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modern-rules-hero .hero-actions .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.modern-rules-hero .hero-actions .btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    font-weight: 600;
    transition: all 0.3s ease;
}

.modern-rules-hero .hero-actions .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.contact-option .btn-outline-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid transparent;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-option .btn-outline-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Responsive Design for Rules Page */
@media (max-width: 768px) {
    .modern-rules-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .modern-rules-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modern-rules-hero .hero-actions {
        flex-direction: column;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-header {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rule-card {
        flex-direction: column;
        text-align: center;
    }
    
    .modern-rules-nav {
        position: static;
        margin-bottom: 2rem;
    }
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: gentleGlow 4s ease-in-out infinite;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 30px;
    z-index: -1;
    animation: subtleFloat 6s ease-in-out infinite;
}

.floating-features {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.feature-badge {
    width: 150px;
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.3rem 0.5rem;
    color: white;
    font-size: 0.65rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    animation: cryptoFloat 4s ease-in-out infinite;
    opacity: 0.9;
}

.feature-badge-1 {
    right: -5%;
    animation-delay: 0s;
}

.feature-badge-2 {
    left: -8%;
    animation-delay: 1.5s;
}

.feature-badge-3 {
    right: 5%;
    animation-delay: 3s;
}

/* Modern Mission Section */
.modern-mission-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.modern-mission-section::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 100 100"><defs><pattern id="mission" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="0" cy="0" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23mission)"/></svg>');
    opacity: 0.2;
    animation: backgroundMove 70s linear infinite;
}

.modern-mission-section .section-title,
.modern-mission-section .section-subtitle {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background-clip: text !important;
    background: var(--accent-color);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: white;
}

.mission-content {
    position: relative;
    z-index: 2;
}

.mission-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::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.5s ease;
}

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

.mission-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    animation: gentleGlow 3s ease-in-out infinite;
}

.mission-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.mission-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
    min-height: 170px;
}

.mission-image-container {
    position: relative;
    z-index: 2;
}

.mission-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.mission-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem;
    color: white;
}

.overlay-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    margin: 0;
    opacity: 0.9;
}

.mission-stats-section {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.modern-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-stat-card::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.5s ease;
}

.modern-stat-card:hover::before {
    left: 100%;
}

.modern-stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.modern-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
    animation: gentleGlow 3s ease-in-out infinite;
}

.modern-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background-clip: text !important;
    background: white;
}

.modern-stat-card .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.modern-stat-card .stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Modern Why Choose Section */
.modern-why-choose-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.modern-why-choose-section::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 100 100"><defs><pattern id="why" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="0" cy="0" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23why)"/></svg>');
    opacity: 0.3;
    animation: backgroundMove 50s linear infinite;
}

.modern-why-choose-section .section-title,
.modern-why-choose-section .section-subtitle {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background-clip: text !important;
    background: var(--accent-color);
}

.features-grid {
    position: relative;
    z-index: 2;
}

.modern-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-feature-card::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.5s ease;
}

.modern-feature-card:hover::before {
    left: 100%;
}

.modern-feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.modern-feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    animation: gentleGlow 3s ease-in-out infinite;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.feature-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.additional-features {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.feature-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin: 0 auto 1rem;
    animation: gentleGlow 3s ease-in-out infinite;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.cta-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .feature-badge {
        display: none;
    }
    
    .mission-card {
        padding: 1.5rem;
    }
    
    .modern-feature-card {
        padding: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .modern-about-hero {
        min-height: 80vh;
    }
    
    .mission-card {
        padding: 1rem;
    }
    
    .modern-feature-card {
        padding: 1rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   MODERN ARTICLE PAGE STYLES
   ======================================== */

/* Modern Article Hero */
.modern-article-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
}

/* Ensure header appears above article hero */
.article-page .navbar {
    z-index: 10001 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

.modern-article-hero .hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.modern-article-hero .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modern-article-hero .hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: white;
}

.modern-article-hero .hero-badge .coin-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.modern-article-hero .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    text-align: start !important;
}

.modern-article-hero .hero-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.modern-article-hero .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.modern-article-hero .hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modern-article-hero .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modern-article-hero .hero-image-container {
    position: relative;
}

.modern-article-hero .hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.modern-article-hero .hero-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modern-article-hero .floating-features {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.modern-article-hero .feature-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.3rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 400;
    gap: 0.2rem;
    color: white;
    display: flex;
    align-items: center;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modern-article-hero .feature-badge-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.modern-article-hero .feature-badge-2 {
    bottom: 20%;
    left: -8%;
    animation-delay: 2s;
}

.modern-article-hero .feature-badge-3 {
    top: 60%;
    right: 5%;
    animation-delay: 4s;
}

/* Modern Article Content */
.modern-article-content {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.modern-article-content::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 100 100"><defs><pattern id="article-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(102,126,234,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23article-pattern)"/></svg>');
    opacity: 0.5;
}

.modern-content-block {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.modern-content-block .article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3748;
    white-space: pre-line;
}

.modern-content-block .article-body h1,
.modern-content-block .article-body h2,
.modern-content-block .article-body h3,
.modern-content-block .article-body h4,
.modern-content-block .article-body h5,
.modern-content-block .article-body h6 {
    color: #2d3748;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.modern-content-block .article-body p {
    margin-bottom: 1.5rem;
}

.modern-content-block .article-body ul,
.modern-content-block .article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.modern-content-block .article-body li {
    margin-bottom: 0.5rem;
}

.modern-content-block .article-body blockquote {
    border-left: 4px solid #667eea;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #718096;
}

/* Modern Analysis Card */
.modern-analysis-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.modern-analysis-card .analysis-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.modern-analysis-card .analysis-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.modern-analysis-card .analysis-header h3 {
    margin: 0;
    color: #2d3748;
    font-weight: 600;
}

.sentiment-section {
    margin-bottom: 1.5rem;
}

.sentiment-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sentiment-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.sentiment-label.bullish {
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
}

.sentiment-label.bearish {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.sentiment-label.neutral {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.sentiment-bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    min-width: 200px;
}

.sentiment-progress {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.sentiment-value {
    font-weight: 700;
    color: #2d3748;
    font-size: 1.1rem;
}

.analysis-text {
    margin-bottom: 1.5rem;
}

.analysis-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.key-points h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.key-points ul {
    list-style: none;
    padding: 0;
}

.key-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.key-points li i {
    color: #059669;
    margin-top: 0.2rem;
}

/* Modern Resources Section */
.modern-resources-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.resources-header {
    text-align: center;
    margin-bottom: 2rem;
}

.resources-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.resources-header h2 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.resources-header p {
    color: #718096;
    margin: 0;
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.resource-item:hover {
    background: white;
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.resource-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.resource-content {
    flex: 1;
}

.resource-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #667eea;
}

.resource-name {
    flex: 1;
    font-weight: 500;
    line-height: 1.5;
}

.resource-link i {
    color: #667eea;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Modern FAQs Section */
.modern-faqs-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.faqs-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faqs-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.faqs-header h2 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.faqs-header p {
    color: #718096;
    margin: 0;
}

.faqs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.faq-question {
    padding: 1.5rem;
    background: #f9fafb;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-text {
    font-weight: 600;
    color: #2d3748;
    flex: 1;
}

.faq-icon {
    color: white;
    transition: transform 0.3s ease;
}

.faq-icon.rotated {
    transform: rotate(180deg);
}

.faq-answer {
    background: white;
}

.faq-content {
    padding: 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

/* Modern Sidebar */
.modern-article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.card-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-header h4 {
    margin: 0;
    font-weight: 600;
}

.card-content {
    padding: 1.5rem;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-btn.twitter {
    background: rgba(29, 161, 242, 0.1);
    color: #1da1f2;
}

.social-btn.twitter:hover {
    background: #1da1f2;
    color: white;
}

.social-btn.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.social-btn.whatsapp:hover {
    background: #25d366;
    color: white;
}

.social-btn.telegram {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.social-btn.telegram:hover {
    background: #0088cc;
    color: white;
}

.social-btn.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.social-btn.facebook:hover {
    background: #1877f2;
    color: white;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item i {
    color: #667eea;
    width: 20px;
    text-align: center;
}

.info-item .label {
    font-weight: 600;
    color: #4b5563;
    flex: 1;
}

.info-item .value {
    color: #2d3748;
    font-weight: 500;
}

/* Modern Related Articles */
.modern-related-articles {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.modern-related-articles::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 100 100"><defs><pattern id="related-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(102,126,234,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23related-pattern)"/></svg>');
    opacity: 0.5;
}

.modern-related-articles .section-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: #718096;
}

.article-meta i {
    color: #667eea;
}

/* Article Page Button Styles */
.modern-article-hero .hero-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid transparent;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.modern-article-hero .hero-actions .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.modern-article-hero .hero-actions .btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    font-weight: 600;
    transition: all 0.3s ease;
}

.modern-article-hero .hero-actions .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Article Page Responsive */
@media (max-width: 768px) {
    .modern-article-hero .hero-title {
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
    
    .modern-article-hero .hero-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .modern-article-hero .hero-actions {
        flex-direction: column;
        justify-content: center;
    }
    
    .modern-article-hero .hero-badges {
        justify-content: center;
    }
    
    .modern-content-block {
        padding: 2rem;
    }
    
    .modern-analysis-card,
    .modern-faqs-section,
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .sentiment-indicator {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .sentiment-bar {
        min-width: 100%;
    }
    
    .article-meta {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .resource-item {
        padding: 0.75rem;
    }
    
    .resource-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .resource-name {
        font-size: 0.9rem;
    }
}

/* ========================================
   MODERN 404 PAGE STYLES
   ======================================== */

/* Modern 404 Hero */
.modern-404-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
}

/* Ensure header appears above 404 hero */
.error-page .navbar {
    z-index: 10001 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

.error-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 8rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: bounceIn 1.5s ease-out;
}

.error-number .number-4,
.error-number .number-0 {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.error-number .number-4:nth-child(1) {
    animation-delay: 0s;
}

.error-number .number-0 {
    animation-delay: 0.5s;
    transform: scale(1.2);
}

.error-number .number-4:nth-child(3) {
    animation-delay: 1s;
}

.modern-404-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    animation: slideInUp 1s ease-out 0.5s both;
}

.modern-404-hero .hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 1s ease-out 0.7s both;
}

.modern-404-hero .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out 0.9s both;
}

.modern-404-hero .hero-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.modern-404-hero .hero-actions .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.modern-404-hero .hero-actions .btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    font-weight: 600;
    transition: all 0.3s ease;
}

.modern-404-hero .hero-actions .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.helpful-links {
    animation: slideInUp 1s ease-out 1.1s both;
}

.helpful-links h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.helpful-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    height: 100%;
}

.helpful-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

.helpful-link i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.helpful-link span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* 404 Page Animations */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* 404 Page Responsive */
@media (max-width: 768px) {
    .error-number {
        font-size: 5rem;
        gap: 0.5rem;
    }
    
    .modern-404-hero .hero-title {
        font-size: 2rem;
    }
    
    .modern-404-hero .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .modern-404-hero .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .modern-404-hero .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .helpful-links .row {
        gap: 1rem;
    }
    
    .helpful-link {
        padding: 1rem;
    }
}

/* ========================================
   MODERN AUTHOR PAGE STYLES
   ======================================== */

/* Modern Author Hero */
.modern-author-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
}

/* Ensure header appears above author hero */
.author-page .navbar {
    z-index: 10001 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

.author-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.author-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.author-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.modern-author-hero .hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    animation: slideInUp 1s ease-out 0.5s both;
}

.modern-author-hero .hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 400;
    animation: slideInUp 1s ease-out 0.7s both;
}

.modern-author-hero .hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: slideInUp 1s ease-out 0.9s both;
}

.modern-author-hero .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 1.1s both;
}

.author-image-container {
    position: relative;
    text-align: center;
}

.author-image {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.image-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 4px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.image-placeholder i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.7);
}

.floating-features {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.feature-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.3rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 400;
    gap: 0.2rem;
    color: white;
    display: flex;
    align-items: center;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-badge-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.feature-badge-2 {
    bottom: 20%;
    left: -8%;
    animation-delay: 2s;
}

.feature-badge-3 {
    top: 60%;
    right: 5%;
    animation-delay: 4s;
}

/* About Section */
.modern-about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.modern-about-section::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 100 100"><defs><pattern id="about-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(102,126,234,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    opacity: 0.5;
}

.about-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2d3748;
}

.expertise-card {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.expertise-card h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expertise-card p {
    color: #718096;
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Section */
.modern-contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.contact-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.contact-method {
    text-align: center;
    padding: 2rem 1rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.contact-method h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-method p {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Author Page Button Styles */
.modern-author-hero .hero-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.modern-author-hero .hero-actions .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.modern-author-hero .hero-actions .btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    font-weight: 600;
    transition: all 0.3s ease;
}

.modern-author-hero .hero-actions .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Author Page Responsive */
@media (max-width: 768px) {
    .modern-author-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .modern-author-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .modern-author-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .modern-author-hero .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .modern-author-hero .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .author-badges {
        justify-content: center;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .image-placeholder i {
        font-size: 6rem;
    }
    
    .about-content,
    .contact-content {
        padding: 2rem;
    }
    
    .expertise-card,
    .contact-method {
        padding: 1.5rem 1rem;
    }
}