html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* WompCool Logo - Retro-Futuristic Neon Style */
.womp-cool-brand {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #1a0f35 0%, #2d1b4e 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    transform: perspective(300px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.womp-cool-brand:hover {
    transform: perspective(300px) rotateY(0deg);
    box-shadow: 0 6px 30px rgba(0, 255, 255, 0.5);
}

.womp-text {
    background: linear-gradient(135deg, #ff0080 0%, #ff4081 25%, #ff0099 50%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 10px rgba(255, 0, 128, 0.8),
        0 0 20px rgba(233, 30, 99, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 0 2px #00ffff,
        0 0 0 4px rgba(0, 255, 255, 0.3);
    font-weight: 900;
    display: inline-block;
    position: relative;
}

.cool-text {
    background: linear-gradient(135deg, #7eff00 0%, #39ff14 50%, #32cd32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 10px rgba(126, 255, 0, 0.8),
        0 0 20px rgba(57, 255, 20, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 0 2px #00ffff,
        0 0 0 4px rgba(0, 255, 255, 0.3);
    font-weight: 900;
    display: inline-block;
    position: relative;
}

.navbar-brand {
    text-decoration: none !important;
}

.navbar-brand:hover .womp-cool-brand {
    animation: neon-pulse 0.6s ease-in-out;
}

@keyframes neon-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 6px 35px rgba(0, 255, 255, 0.7),
                    0 0 40px rgba(255, 0, 128, 0.4),
                    0 0 60px rgba(126, 255, 0, 0.4);
    }
}

/* Styling for the large logo on homepage */
.womp-cool-container {
    background: linear-gradient(135deg, #1a0f35 0%, #2d1b4e 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 8px 40px rgba(0, 255, 255, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.1);
}

.womp-cool-container .womp-cool-brand {
    font-size: 3.5rem;
    transform: perspective(400px) rotateY(-8deg);
}

.womp-cool-container:hover .womp-cool-brand {
    transform: perspective(400px) rotateY(-3deg);
}

/* Responsive adjustments for logo */
@media (max-width: 575.98px) {
    .womp-cool-brand {
        font-size: 1.2rem;
    }
    
    .womp-cool-container .womp-cool-brand {
        font-size: 2.5rem;
    }
}

.article-hero-image {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #000;
    overflow: hidden;
}

    .article-hero-image img {
        width: 100%;
        height: auto;
        display: block;
        max-height: 500px;
        object-fit: cover;
    }

.article-header {
    background: #f8f9fa;
    border-bottom: 3px solid #dee2e6;
    padding: 3rem 0;
    margin-bottom: 2rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

    .article-header .container-fluid {
        max-width: 1200px;
        margin: 0 auto;
    }

.article-header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.article-category {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #6c757d;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.article-title {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.1;
    color: #000;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #6c757d;
}

.article-byline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-author-label {
    font-weight: normal;
}

.article-author {
    font-weight: 600;
    color: #000;
}

.article-info {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

.article-published, .article-readtime {
    color: #6c757d;
}

.article-body {
    padding-right: 2rem;
}

.article-content {
    margin-top: 2rem;
}

.blog-content {
    line-height: 1.9;
    font-size: 1.125rem;
    color: #212529;
}

    .blog-content p {
        margin-bottom: 1.5rem;
    }

    .blog-content h2 {
        font-size: 1.75rem;
        font-weight: 700;
        margin-top: 2rem;
        margin-bottom: 1rem;
        color: #000;
    }

    .blog-content ul {
        margin-bottom: 1.5rem;
        padding-left: 1.5rem;
    }

    .blog-content li {
        margin-bottom: 0.5rem;
    }

.sidebar {
    padding-left: 1rem;
}

.sidebar-content {
    position: sticky;
    top: 20px;
}

.sidebar-ad-placeholder {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    padding: 3rem 2rem;
    text-align: center;
    color: #6c757d;
    margin-bottom: 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .article-title {
        font-size: 2rem;
    }

    .article-body {
        padding-right: 0;
    }

    .sidebar {
        padding-left: 0;
        margin-top: 2rem;
    }

    .sidebar-content {
        position: relative;
    }

    .article-hero-image img {
        max-height: 350px;
    }
}

@media (max-width: 575.98px) {
    .article-header {
        padding: 2rem 0;
    }

    .article-title {
        font-size: 1.75rem;
    }

    .article-meta {
        font-size: 0.85rem;
    }

    .article-info {
        flex-direction: column;
        gap: 0.25rem;
    }

    .article-hero-image img {
        max-height: 250px;
    }
}
