/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Poppins:wght@400;700&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow: hidden;
    background: #000 url('https://dakg4cmpuclai.cloudfront.net/wc49n0rjvuk4s899o6vb7hhkh/bHVuYXR5LmZ1bg%3D%3D/img.gif') !important;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Fallback Background */
#fallback-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #000428, #004e92);
    display: none; /* Hidden by default */
}

#particles-canvas {
    width: 100%;
    height: 100%;
}

/* Content Styling */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* Responsive font size */
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    color: #00bfff; /* Light blue */
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.8);
    letter-spacing: 2px;
}

p {
    font-size: clamp(1rem, 4vw, 1.5rem); /* Responsive font size */
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 400;
}

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

.links a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: clamp(0.875rem, 3vw, 1rem); /* Responsive font size */
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #00bfff;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.links a:hover {
    background-color: #00bfff;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.8);
}
footer {
    text-align: center;
    padding: 10px;
    background-color: #222;
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.dmca-badge {
    display: block;
    text-align: right; /* Aligns the badge to the right */
    padding-right: 20px; /* Adds spacing from the edge */
}

.dmca-badge img {
    width: 150px; /* Smaller default size for desktops */
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .dmca-badge img {
        width: 100px; /* Smaller size for tablets & phones */
    }
}

@media (max-width: 480px) {
    .dmca-badge img {
        width: 80px; /* Even smaller on very small screens */
    }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem; /* Smaller font size for mobile */
    }

    p {
        font-size: 1.25rem; /* Smaller font size for mobile */
    }

    .links a {
        padding: 0.5rem 1rem; /* Smaller padding for mobile */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem; /* Even smaller font size for very small devices */
    }

    p {
        font-size: 1rem; /* Even smaller font size for very small devices */
    }

    .links {
        flex-direction: column; /* Stack links vertically on very small screens */
    }
}