
body {
    font-family: Arial, sans-serif;
    background: #0d0d0d url('assets/2025-12-08_23.48.35.png') center/cover fixed no-repeat;
    color: #eee;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* prevent horizontal scroll */
}

/* NAVBAR */
nav {
    width: 100%; /* full width */
    box-sizing: border-box; /* include padding in width */
    background: rgba(0,0,0,0.75);
    padding: 15px 25px;
    display: flex;
    flex-wrap: wrap; /* wrap links if they overflow */
    gap: 20px;
    border-bottom: 2px solid #222;
    backdrop-filter: blur(6px);
}

nav a {
    color: #bbb;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: 0.2s;
}

nav a:hover,
nav a.active {
    color: #2ecc71;
}

@media (max-width: 600px) {
    /* Container adjustments */
    .container {
        width: 90%;
        padding: 15px;
        margin: 30px auto;
    }

    /* Navbar adjustments */
    nav {
        padding: 10px 15px;
        justify-content: center; /* center links */
        gap: 10px;
    }
    
    nav a {
        font-size: 14px;
        white-space: nowrap; /* prevent wrapping */
    }

    /* Titles smaller */
    .title-glow { font-size: 24px; }
    .subtitle { font-size: 14px; }

    /* IP boxes stack vertically */
    .ip-entry {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    /* Make status and IP boxes full width */
    .status-box, .ip-box {
        width: 100%;
        box-sizing: border-box;
    }

    /* Google Form height adjustment */
    .form-container iframe {
        height: 1600px;
        transform: scale(1);
    }
}
.container {
    max-width: 750px;
    margin: 50px auto;
    background: rgba(20,20,20,0.90);
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #333;
    box-shadow: 0px 0px 20px #000;
    backdrop-filter: blur(4px);
}

/* TITLES */
.title-glow {
    font-size: 32px;
    text-align: center;
    margin: 0;
    color: #2ecc71;
    text-shadow: 0 0 12px rgba(46, 204, 113, 0.5);
}

.form-container {
    width: 100%;
    max-width: 700px;   /* desktop size */
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.form-container iframe {
    width: 100%;
    height: 1200px;        /* default height */
    border: none;
}

.subtitle {
    text-align: center;
    font-size: 16px;
    margin-top: 5px;
    color: #ccc;
}

/* STATUS BOX */
.status-box {
    margin-top: 20px;
    padding: 15px;
    background: #191919;
    border-radius: 10px;
    border: 1px solid #333;
}

/* BADGES */
.badge {
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: bold;
}

.online {
    background: #2ecc71;
    color: #000;
    box-shadow: 0 0 10px rgba(46,204,113,0.6);
}

.offline {
    background: #e74c3c;
    color: #fff;
}

/* IP BOXES */
.ip-box {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ip-entry {
    background: #191919;
    margin: 0;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #333;

    display: flex;
    align-items: center;
    gap: 10px; /* control spacing between label + IP + button */
    justify-content: flex-start; /* keep them together */
}

/* BUTTONS */
.copy-btn {
    background: #2ecc71;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.copy-btn:active {
    transform: scale(0.92);
}

.copy-btn.copied {
    animation: glow 0.5s ease-out;
}

@keyframes glow {
    0% { box-shadow: 0 0 0px #2ecc71; }
    50% { box-shadow: 0 0 12px #2ecc71; }
    100% { box-shadow: 0 0 0px #2ecc71; }
}

.copy-btn:hover {
    background: #27ae60;
}

/* COPY MESSAGE */
.copy-message {
    margin-top: 10px;
    text-align: center;
    color: #2ecc71;
    opacity: 0;
    transition: 0.3s;
    font-weight: bold;
}

.copy-message.show {
    opacity: 1;
}


.feedback { 
    background: #2ecc71;
    color: #000;
    border: none;
    padding: 5px 10px; 
    border-radius: 6px; 
    font-weight: bold; 
    cursor: pointer; 
    margin-bottom: 10px; 
    margin-top: 15px; 
} 
.feedback:hover { 
    background: #27ae60; 
}



.section ul { 
    list-style: disc; 
    margin-left: 20px; 
    margin-bottom: 20px; 
} 


.section a { 
    color: #2ecc71; 
    text-decoration: none; 
} 

.section a:hover { 
    text-decoration: underline; 
} 

.section h2 { 
    margin-top: 25px; 
    color: #2ecc71; 
    font-size: 22px; 
} 

.section h1 { 
    margin-top: 25px; 
    color: #ffffff; 
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 28px; 
}

.section ul { 
    margin-left: 20px; 
    margin-bottom: 15px; 
} 

.section ul li { 
    margin-bottom: 6px; 
    line-height: 1.4; }

.page-fade {
    animation: pageFade 0.6s ease-out;
}

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

