.index {
    flex: 1;
    margin-top: 25px;

}
.main {
    max-width: 95rem;
    margin: auto;
}
body {
    color: #fff;
    background-color: #1a1a30;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    line-height: 1.25;
}
.container {
    max-width: 1200px;
}
a {
    color:#86f7ff;
    text-decoration:none !important;
    padding: 0;
    margin: 0;
}
a:hover{
    color: #fff;
}
.custom-hover {
      color: #ffffff !important;
    }
.custom-hover:hover {
      color: #86f7ff !important;
    }
.image-header-top {
    width: 100%;
}
@media (min-width: 1000px) {
    .image-header-top {
        width: 100%;
    }
    .image-header-top > img {
        margin-left: 0vw;
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
}


@font-face {
    font-family: Regular;
    src: url(/assets/fonts/BarlowCondensed-Regular.ttf);
}
@font-face {
    font-family: HeaderFont;
    src: url(/assets/fonts/THEBOLDFONT.ttf);
}
h3 {
    font-family: HeaderFont;
}
.text-bg-php {
    color: #fff !important;
    background-color: rgb(90, 85, 162) !important;
  }

    .adverts-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        padding: 2rem 1rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    .db-advert {
        position: relative;
        display: block;
        text-decoration: none;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    }

    .db-advert:hover {
        transform: translateY(-12px) scale(1.05);
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    }

    .advert-wrapper {
        position: relative;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 0.75rem;
        transition: all 0.4s ease;
        overflow: hidden;
    }

    .db-advert:hover .advert-wrapper {
        border-color: rgba(255, 255, 255, 0.3);
    }

    .advert-wrapper::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;
    }

    .db-advert:hover .advert-wrapper::before {
        left: 100%;
    }

    .advert-img {
        width: 480px;
        height: auto;
        display: block;
        border-radius: 8px;
        transition: transform 0.4s ease;
        position: relative;
        z-index: 2;
    }

    .db-advert:hover .advert-img {
        transform: scale(1.02);
    }

    /* Glow effects for each site - removed */

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .adverts-container {
            gap: 1.5rem;
            padding: 1.5rem 0.5rem;
        }

        .advert-img {
            width: 100%;
            max-width: 480px;
        }
    }

    @media (max-width: 480px) {
        .adverts-container {
            gap: 1rem;
        }

        .advert-wrapper {
            padding: 0.5rem;
        }

        .db-advert:hover {
            transform: translateY(-8px) scale(1.03);
        }
    }

   .blog-posts-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
        padding: 2rem 1rem;
        max-width: 1600px;
        margin: 0 auto;
    }

    .blog-card-link {
        text-decoration: none;
        display: block;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
        width: 350px;
        height: 450px;
    }

    .blog-card-link:hover {
        transform: translateY(-12px) scale(1.02);
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    }

    .blog-card {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
        border: 2px solid rgba(0, 255, 255, 0.3) !important;
        border-radius: 16px !important;
        overflow: hidden;
        transition: all 0.4s ease;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .blog-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;
        z-index: 1;
        pointer-events: none;
    }

    .blog-card-link:hover .blog-card::before {
        left: 100%;
    }

    .blog-card-link:hover .blog-card {
        border-color: rgba(0, 255, 255, 0.6) !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    }

    .blog-card-body {
        display: flex;
        flex-direction: column;
        padding: 0;
        height: 100%;
        position: relative;
        z-index: 2;
    }

    .blog-card-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: transform 0.4s ease;
        flex-shrink: 0;
    }

    .blog-card-link:hover .blog-card-image {
        transform: scale(1.05);
    }

    .blog-card-title {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
        color: #fff;
        font-size: 1.35rem;
        font-weight: 700;
        text-align: left;
        padding: 1rem 1rem 0.5rem 1rem;
        width: 100%;
        transition: color 0.3s ease;
        min-height: 75px;
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    .blog-card-link:hover .blog-card-title {
        color: rgba(0, 255, 255, 0.9);
    }

    .blog-card-content {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
        color: rgba(255, 255, 255, 0.85);
        font-size: 1rem;
        text-align: left;
        padding: 0.5rem 1rem 1rem 1rem;
        width: 100%;
        flex-grow: 1;
        line-height: 1.6;
        min-height: 90px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .blog-card-content p {
        margin-bottom: 0.5rem;
    }

    .blog-read-more {
        color: rgba(0, 255, 255, 0.8);
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .blog-card-link:hover .blog-read-more {
        color: rgba(0, 255, 255, 1);
    }

    .blog-card-date {
        background: rgba(0, 0, 0, 0.95);
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.875rem;
        font-style: italic;
        text-align: left;
        padding: 0.75rem 1rem;
        width: 100%;
        border-top: 1px solid rgba(0, 255, 255, 0.1);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .blog-posts-container {
            gap: 1.5rem;
            padding: 1.5rem 0.5rem;
        }

        .blog-card {
            max-width: 100%;
        }

        .blog-card-image {
            height: 180px;
        }

        .blog-card-title {
            font-size: 1.25rem;
        }

        .blog-card-content {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .blog-posts-container {
            gap: 1rem;
        }

        .blog-card-image {
            height: 160px;
        }

        .blog-card-link:hover {
            transform: translateY(-8px) scale(1.01);
        }
    }

        .site-footer {
        background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
        border-top: 2px solid rgba(255, 255, 255, 0.1);
        margin-top: 3rem;
        padding: 1.5rem 1rem;
        position: relative;
        overflow: hidden;
    }

    .site-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.5), transparent);
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .footer-brand {
        color: #ffffff;
        font-size: clamp(1.1rem, 2vw, 1.4rem);
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 0.75rem;
        transition: color 0.3s ease;
        letter-spacing: 0.5px;
        font-family: Regular;
    }

    .footer-brand:hover {
        color: rgba(0, 255, 255, 0.9);
    }

    .version-footer {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9em;
        font-weight: 400;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        margin-top: 0.75rem;
    }

    .footer-link {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 1rem;
        transition: all 0.3s ease;
        position: relative;
        padding: 0.25rem 0;
    }

    .footer-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        transition: width 0.3s ease;
    }

    .footer-link:hover {
        color: #ffffff;
        transform: translateY(-2px);
    }

    .footer-link:hover::after {
        width: 100%;
    }

    .footer-logo {
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
        padding: 0.25rem;
        border-radius: 8px;
    }

    .footer-logo:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.05);
    }

    .footer-logo img {
        filter: brightness(0.9);
        transition: filter 0.3s ease;
    }

    .footer-logo:hover img {
        filter: brightness(1.1);
    }

    .footer-divider {
        width: 2px;
        height: 20px;
        background: rgba(255, 255, 255, 0.2);
        margin: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .site-footer {
            padding: 1.25rem 1rem;
        }

        .footer-links {
            gap: 1.25rem;
        }

        .footer-link {
            font-size: 0.9rem;
        }

        .footer-divider {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .footer-links {
            gap: 1rem;
            flex-direction: column;
        }

        .footer-logo img {
            max-width: 80px;
        }
    }



    .construction-alert {
        max-width: 900px;
        margin: 0 auto 2rem;
        background: linear-gradient(135deg, rgba(13, 202, 240, 0.15) 0%, rgba(13, 202, 240, 0.05) 100%);
        border: 2px solid rgba(13, 202, 240, 0.4);
        border-radius: 12px;
        padding: 1.25rem;
        color: #fff;
        font-size: 1.1rem;
        position: relative;
        overflow: hidden;
    }

    .construction-alert::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
        0% { left: -100%; }
        100% { left: 100%; }
    }

    .construction-alert strong {
        color: rgba(13, 202, 240, 1);
    }

    .btn-close {
        filter: brightness(0) invert(1);
        opacity: 0.8;
    }

    .btn-close:hover {
        opacity: 1;
    }


    /* Modal Enhancements */
    .modal {
        padding: 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        overflow: auto !important;
        z-index: 1055 !important;
        display: none;
    }

    .modal.show {
        display: block !important;
    }

    .modal-backdrop {
        z-index: 1050 !important;
    }

    .modal-dialog {
        margin: 1.75rem auto;
        max-width: 1140px;
        display: flex;
        align-items: center;
        min-height: calc(100% - 3.5rem);
        position: relative;
        z-index: 1056;
    }

    .modal-content {
        background: transparent !important;
        border: none !important;
        width: 100%;
        position: relative;
        z-index: 1057;
    }

    .modal-body {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1058;
    }

    .modal-image-wrapper {
        position: relative;
        display: inline-block;
        max-width: 100%;
        z-index: 1059;
    }

    .modal-image-wrapper img {
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        display: block;
        max-height: 90vh;
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .btn-close-white {
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        padding: 0.75rem;
        opacity: 0.9;
        transition: all 0.3s ease;
        z-index: 1060 !important;
        position: absolute !important;
        top: 0.75rem !important;
        right: 0.75rem !important;
        cursor: pointer !important;
        pointer-events: auto !important;
    }

    .btn-close-white:hover {
        background: rgba(0, 0, 0, 0.9);
        opacity: 1;
        transform: rotate(90deg);
    }

    /* Prevent body scroll when modal is open */
    body.modal-open {
        overflow: hidden !important;
        padding-right: 0 !important;
        position: static !important;
        width: 100% !important;
    }

    /* Mobile Modal Fixes */
    @media (max-width: 768px) {
        .modal-dialog {
            margin: 0.5rem auto;
            max-width: calc(100vw - 1rem);
            min-height: calc(100% - 1rem);
        }

        .modal-image-wrapper img {
            max-height: 85vh;
            border-radius: 8px;
        }

        .btn-close-white {
            padding: 0.6rem;
            top: 0.5rem !important;
            right: 0.5rem !important;
        }
    }

    /* Modal Enhancements */
    .modal {
        padding: 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        overflow: auto !important;
        z-index: 1055 !important;
        display: none;
    }

    .modal.show {
        display: block !important;
    }

    .modal-backdrop {
        z-index: 1050 !important;
    }

    .modal-dialog {
        margin: 1.75rem auto;
        max-width: 1140px;
        display: flex;
        align-items: center;
        min-height: calc(100% - 3.5rem);
        position: relative;
        z-index: 1056;
    }

    .modal-content {
        background: transparent !important;
        border: none !important;
        width: 100%;
        position: relative;
        z-index: 1057;
    }

    .modal-body {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1058;
    }

    .modal-image-wrapper {
        position: relative;
        display: inline-block;
        max-width: 100%;
        z-index: 1059;
    }

    .modal-image-wrapper img {
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        display: block;
        max-height: 90vh;
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .btn-close-white {
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        padding: 0.75rem;
        opacity: 0.9;
        transition: all 0.3s ease;
        z-index: 1060 !important;
        position: absolute !important;
        top: 0.75rem !important;
        right: 0.75rem !important;
        cursor: pointer !important;
        pointer-events: auto !important;
    }

    .btn-close-white:hover {
        background: rgba(0, 0, 0, 0.9);
        opacity: 1;
        transform: rotate(90deg);
    }

    /* Prevent body scroll when modal is open */
    body.modal-open {
        overflow: hidden !important;
        padding-right: 0 !important;
        position: static !important;
        width: 100% !important;
    }

    /* Mobile Modal Fixes */
    @media (max-width: 768px) {
        .modal-dialog {
            margin: 0.5rem auto;
            max-width: calc(100vw - 1rem);
            min-height: calc(100% - 1rem);
        }

        .modal-image-wrapper img {
            max-height: 85vh;
            border-radius: 8px;
        }

        .btn-close-white {
            padding: 0.6rem;
            top: 0.5rem !important;
            right: 0.5rem !important;
        }
    }



        .blog-post-container {
        max-width: 900px;
        margin: 2rem auto;
        padding: 0 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    }

    .blog-post-header {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
        border: 2px solid rgba(0, 255, 255, 0.3);
        border-radius: 16px;
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
        position: relative;
        overflow: hidden;
    }

    .blog-post-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        animation: shine 3s infinite;
        pointer-events: none;
    }

    @keyframes shine {
        0% { left: -100%; }
        50% { left: 100%; }
        100% { left: 100%; }
    }

    .blog-post-title {
        color: #fff;
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        font-weight: 700;
        margin: 0 0 1rem 0;
        line-height: 1.3;
        position: relative;
        z-index: 2;
    }

    .blog-post-date {
        color: rgba(0, 255, 255, 0.8);
        font-size: 0.9rem;
        font-style: italic;
        display: block;
        position: relative;
        z-index: 2;
    }

    .blog-post-divider {
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.5), transparent);
        border: none;
        margin: 2rem 0;
    }

    .blog-post-content {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 2.5rem 2rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.125rem;
        line-height: 1.8;
        position: relative;
        overflow: hidden;
    }

    .blog-post-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
        animation: shine 4s infinite;
        pointer-events: none;
    }

    .blog-post-content > * {
        position: relative;
        z-index: 2;
    }

    .blog-post-content h1,
    .blog-post-content h2,
    .blog-post-content h3,
    .blog-post-content h4 {
        color: rgba(0, 255, 255, 0.9);
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .blog-post-content h1 { font-size: 2rem; }
    .blog-post-content h2 { font-size: 1.75rem; }
    .blog-post-content h3 { font-size: 1.5rem; }
    .blog-post-content h4 { font-size: 1.25rem; }

    .blog-post-content p {
        margin-bottom: 1.25rem;
    }

    .blog-post-content a {
        color: rgba(0, 255, 255, 0.9);
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 255, 255, 0.3);
        transition: all 0.3s ease;
    }

    .blog-post-content a:hover {
        color: rgba(0, 255, 255, 1);
        border-bottom-color: rgba(0, 255, 255, 0.8);
    }

    .blog-post-content ul,
    .blog-post-content ol {
        margin-bottom: 1.25rem;
        padding-left: 2rem;
    }

    .blog-post-content li {
        margin-bottom: 0.5rem;
    }

    .blog-post-content code {
        background: rgba(0, 0, 0, 0.3);
        padding: 0.2rem 0.4rem;
        border-radius: 4px;
        font-family: 'Courier New', monospace;
        font-size: 0.9em;
        color: rgba(0, 255, 255, 0.9);
    }

    .blog-post-content pre {
        background: rgba(0, 0, 0, 0.3);
        padding: 1rem;
        border-radius: 8px;
        overflow-x: auto;
        margin-bottom: 1.25rem;
    }

    .blog-post-content pre code {
        background: none;
        padding: 0;
    }

    .blog-post-content blockquote {
        border-left: 4px solid rgba(0, 255, 255, 0.5);
        padding-left: 1.5rem;
        margin: 1.5rem 0;
        font-style: italic;
        color: rgba(255, 255, 255, 0.8);
    }

    .blog-post-content img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        margin: 1.5rem 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .blog-post-container {
            margin: 1.5rem auto;
            padding: 0 0.75rem;
        }

        .blog-post-header {
            padding: 2rem 1.5rem;
        }

        .blog-post-content {
            padding: 2rem 1.5rem;
            font-size: 1rem;
        }

        .blog-post-title {
            font-size: clamp(1.5rem, 4vw, 2rem);
        }
    }

    @media (max-width: 480px) {
        .blog-post-header {
            padding: 1.5rem 1rem;
        }

        .blog-post-content {
            padding: 1.5rem 1rem;
        }
    }