/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #1A1A1A;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: #FF69B4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

a {
    color: #FF69B4;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FF1493;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: #FF69B4;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF1493;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(26, 10, 26, 0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #FF69B4;
    margin: 4px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #FFFFFF;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-links li a:hover {
    background-color: #FF69B4;
    color: #1A1A1A;
}

.server-ip {
    display: flex;
    align-items: center;
    gap: 10px;
}

.server-ip button {
    background-color: #FF69B4;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    color: #FFFFFF;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.server-ip button:hover {
    background-color: #FF1493;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-image: url('pookiebanner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 10, 26, 0.5), rgba(26, 10, 26, 0.7));
}

.hero .content {
    z-index: 1;
    animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: slideIn 1s ease-in-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    animation: slideIn 1.2s ease-in-out;
}

.buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    animation: fadeIn 1.5s ease-in-out;
}

.btn {
    background-color: rgba(255, 105, 180, 0.3);
    padding: 10px 20px;
    border-radius: 5px;
    color: #FFFFFF;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 105, 180, 0.5);
}

.btn:hover {
    background-color: rgba(255, 20, 147, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.7);
}

.live-stats {
    margin-top: 20px;
    animation: fadeIn 1.8s ease-in-out;
}

.live-stats span {
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #1A1A1A, #121212);
}

.features h2 {
    margin-bottom: 30px;
    animation: slideIn 1s ease-in-out;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background-color: rgba(26, 10, 26, 0.8);
    padding: 20px;
    border-radius: 10px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.5);
}

.card i {
    font-size: 2rem;
    color: #FF69B4;
    margin-bottom: 10px;
}

/* Gallery Section */
.gallery {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #121212, #1A1A1A);
}

.gallery h2 {
    margin-bottom: 30px;
    animation: slideIn 1s ease-in-out;
}

.swipe-container {
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
}

.swipe-wrapper {
    display: inline-flex;
    gap: 10px;
    padding-bottom: 10px;
}

.swipe-wrapper img {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.swipe-wrapper img:hover {
    transform: scale(1.1);
}

/* Discord & Socials Section */
.discord-socials {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #1A1A1A, #121212);
}

.discord-socials h2 {
    margin-bottom: 30px;
    animation: slideIn 1s ease-in-out;
}

.discord-widget {
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icons i {
    font-size: 1.5rem;
    color: #FF69B4;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons i:hover {
    transform: scale(1.2);
    color: #FF1493;
}

/* Footer */
footer {
    position: relative;
    padding: 50px 20px;
    text-align: center;
    background-color: rgba(26, 10, 26, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(255, 105, 180, 0.3);
    overflow: hidden;
    z-index: 10;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.3), transparent 70%);
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.quick-links a {
    color: #FF69B4;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.quick-links a:hover {
    color: #FF1493;
    transform: translateY(-3px);
}

.server-ip {
    margin-bottom: 20px;
}

.server-ip span {
    font-size: 1.2rem;
    color: #FF69B4;
    font-weight: bold;
    background-color: rgba(255, 105, 180, 0.2);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.copyright {
    font-size: 0.9rem;
    color: #CCCCCC;
}

/* Footer Animation */
footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.1), rgba(255, 20, 147, 0.1));
    animation: rotate 10s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Neon Border Effect */
footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 105, 180, 0.3);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.5), 0 0 40px rgba(255, 105, 180, 0.3);
    animation: neon-border 3s infinite alternate;
    z-index: -1;
}

@keyframes neon-border {
    from { box-shadow: 0 0 20px rgba(255, 105, 180, 0.5), 0 0 40px rgba(255, 105, 180, 0.3); }
    to { box-shadow: 0 0 30px rgba(255, 105, 180, 0.7), 0 0 50px rgba(255, 105, 180, 0.5); }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icons i {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(255, 105, 180, 0.5);
    animation: float 5s infinite ease-in-out;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* Add Floating Icons Dynamically */
.floating-icons i:nth-child(1) { top: 10%; left: 5%; animation-duration: 6s; }
.floating-icons i:nth-child(2) { top: 20%; left: 80%; animation-duration: 8s; }
.floating-icons i:nth-child(3) { top: 50%; left: 30%; animation-duration: 7s; }
.floating-icons i:nth-child(4) { top: 70%; left: 60%; animation-duration: 9s; }
.floating-icons i:nth-child(5) { top: 90%; left: 10%; animation-duration: 10s; }

/* Watermark Styles */
.watermark {
    position: fixed;
    bottom: 10px;
    right: 10px;
    opacity: 0.7;
    font-size: 0.8rem;
    color: #CCCCCC;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 1;
    transition: opacity 0.3s ease, background-color 0.3s ease, bottom 0.5s ease;
}

.watermark:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
}

.watermark a {
    color: #FF69B4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.watermark a:hover {
    color: #FF1493;
}

.bladeop-head {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transition: transform 0.5s ease;
    animation: spin 5s infinite linear;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.watermark:hover .bladeop-head {
    animation: spin 1s infinite linear;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: rgba(26, 10, 26, 0.8);
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 10px;
        border-radius: 5px;
    }

    .nav-links.active {
        display: flex;
    }

    .feature-cards {
        flex-direction: column;
        align-items: center;
    }

    .swipe-wrapper img {
        width: 150px;
        height: 100px;
    }
}
/* Particle Background */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure it's behind the content */
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1; /* Ensure it stays behind other content */
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 0;
}
.hero .content {
    position: relative;
    z-index: 1; /* Ensure content is above the overlay and particles */
}
/* Highlight selected text in pink */
::selection {
    background-color: pink;
    color: black; /* Optional: Change text color when selected */
}

/* For Firefox */
::-moz-selection {
    background-color: pink;
    color: black;
}

/* Ensure text is selectable */
.highlight-text {
    user-select: text; /* Makes text selectable on all devices */
}