/* Color Scheme Options - Uncomment the one you want to use */

/* Option 1: Original Purple/Pink (Fabulous Miners style) */
/*
:root {
    --bg-gradient-1: #667eea;
    --bg-gradient-2: #764ba2;
    --accent-color: #ffcae5;
    --accent-hover: #ff9ed3;
    --card-bg: rgba(44, 47, 63, 0.95);
}
*/

/* Option 2: Ocean/Teal Theme */
/*
:root {
    --bg-gradient-1: #0F2027;
    --bg-gradient-2: #203A43;
    --bg-gradient-3: #2C5364;
    --accent-color: #00d9ff;
    --accent-hover: #00b8d9;
    --card-bg: rgba(15, 32, 39, 0.95);
}
*/

/* Option 3: Sunset Orange/Red */
/*
:root {
    --bg-gradient-1: #ff512f;
    --bg-gradient-2: #dd2476;
    --accent-color: #ffd89b;
    --accent-hover: #ffc670;
    --card-bg: rgba(64, 28, 44, 0.95);
}
*/

/* Option 4: Forest Green */
/*
:root {
    --bg-gradient-1: #134e5e;
    --bg-gradient-2: #71b280;
    --accent-color: #a8e063;
    --accent-hover: #98d050;
    --card-bg: rgba(19, 78, 94, 0.95);
}
*/

/* Option 5: Dark Space */
:root {
    --bg-gradient-1: #0f0c29;
    --bg-gradient-2: #302b63;
    --bg-gradient-3: #24243e;
    --accent-color: #00ffcc;
    --accent-hover: #00d9aa;
    --card-bg: rgba(15, 12, 41, 0.95);
}

/* Option 6: Royal Blue/Gold */
/*
:root {
    --bg-gradient-1: #1e3c72;
    --bg-gradient-2: #2a5298;
    --accent-color: #ffd700;
    --accent-hover: #ffcc00;
    --card-bg: rgba(30, 60, 114, 0.95);
}
*/

/* Option 7: Synthwave/Retrowave */
/*
:root {
    --bg-gradient-1: #2b1055;
    --bg-gradient-2: #7597de;
    --accent-color: #ff00ff;
    --accent-hover: #ff00cc;
    --card-bg: rgba(43, 16, 85, 0.95);
}
*/

/* Option 8: Warm Earth Tones */
/*
:root {
    --bg-gradient-1: #3e2723;
    --bg-gradient-2: #795548;
    --bg-gradient-3: #a1887f;
    --accent-color: #ffb74d;
    --accent-hover: #ffa726;
    --card-bg: rgba(62, 39, 35, 0.95);
}
*/

html {
    min-height: 100%;
    height: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    background: linear-gradient(135deg, var(--bg-gradient-1) 0%, var(--bg-gradient-2) 50%, var(--bg-gradient-3, var(--bg-gradient-2)) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    font-family: 'Nunito Sans', 'Segoe UI', 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #ffffff;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.container {
    position: relative;
    z-index: 10;
    padding: 20px;
    max-width: 100%;
    overflow-x: hidden;
}

header {
    padding: 20px 0;
}


.server-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.server-status-box {
    background: rgba(26, 26, 46, 0.4) !important;
    border: 1px solid rgba(22, 33, 62, 0.5) !important;
    border-radius: 10px;
    padding: 15px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    max-width: 100%;
    box-sizing: border-box;
}

.server-status-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.server-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: none;
}

.status-dot.online {
    background-color: #4CAF50;
    animation: pulse-dot 2s infinite;
}

.status-dot.offline {
    background-color: #f44336;
}

.server-status-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.status-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.status-stat i {
    display: inline-block;
    width: 16px;
    color: var(--accent-color);
    opacity: 0.8;
    font-size: 0.75rem;
    text-align: center;
}

.status-stat strong {
    color: #fff;
    font-weight: 600;
}

/* Discord Join Button */
.server-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 8px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.server-stat:hover {
    background-color: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.5);
    transform: translateY(-2px);
}

.server-stat-icon {
    font-size: 1.8rem;
    color: #5865F2;
}

.server-stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.server-stat-count {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.server-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}


.logo-container {
    text-align: center;
    padding: 40px 0;
}

.logo-animation {
    max-width: 600px;
    width: 100%;
    height: auto;
    animation: pulse 2s infinite;
}

.logo-text {
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
    margin: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.navbar {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    margin-bottom: 20px;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
}

.nav-link {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 5px;
}

.nav-link:hover {
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: var(--accent-color);
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.custom-list {
    list-style-type: none;
    padding-left: 0;
}

.custom-list li {
    margin-bottom: 15px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.custom-list li:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.custom-list li i {
    margin-right: 10px;
    color: var(--accent-color);
}

.custom-list li strong {
    color: var(--accent-color);
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #333;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 202, 229, 0.3);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-discord {
    background-color: #5865F2;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-discord:hover {
    background-color: #4752C4;
}

.text-pink {
    color: var(--accent-color);
}

.text-center {
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: flex;
    flex-direction: column;
}

.info-card.h-100 {
    height: 100%;
}

.info-card h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.copy-field {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.copy-field input {
    flex: 1;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    color: #fff;
    font-family: monospace;
}

.copy-field button {
    padding: 10px 20px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4CAF50;
    animation: pulse-dot 2s infinite;
}

.status-dot.offline {
    background-color: #f44336;
    animation: none;
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.faq-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.faq-card h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

footer {
    background-color: rgba(44, 43, 43, 0.9);
    text-align: center;
    padding: 20px;
    margin-top: 60px;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 992px) {
    .info-card .d-flex {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    html, body {
        min-height: 100%;
        height: auto;
    }
    
    body {
        background-attachment: fixed;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    
    header {
        padding: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    header .py-1 {
        padding-top: 0 !important;
        padding-bottom: 5px !important;
    }
    
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .container {
        padding: 5px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    main {
        padding: 20px 5px !important;
    }
    
    .card {
        padding: 15px !important;
        margin-left: 5px;
        margin-right: 5px;
    }
    
    .info-card, .faq-card {
        padding: 12px !important;
    }
    
    .server-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .server-stat {
        width: 100%;
        justify-content: center;
    }
    
    .server-status-box {
        transform: none !important;
        margin: 0 10px;
        max-width: calc(100% - 20px);
        padding: 10px !important;
    }
    
    .server-status-title {
        font-size: 0.75rem !important;
        margin-bottom: 5px !important;
    }
    
    .server-status-indicator {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px !important;
        padding-bottom: 5px !important;
    }
    
    .server-status-indicator #status-dot {
        order: 2;
        margin-left: 8px;
        margin-right: 0;
    }
    
    .server-status-indicator #status-text {
        order: 1;
        margin-left: auto;
    }
    
    .navbar-toggler {
        margin-left: auto !important;
    }
    
    .status-stat:first-child {
        display: none !important;
    }
    
    .card, .info-card, .faq-card {
        max-width: 100%;
    }
    
    .logo-container {
        padding: 10px 0;
    }
    
    .logo-animation {
        max-width: 90%;
    }
    
    .logo-text {
        font-size: 3rem;
    }
    
    .navbar {
        padding: 10px 0;
        margin-top: 0 !important;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .info-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
    }
    
    .info-card .d-flex {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start !important;
    }
    
    .info-card .d-flex span {
        margin: 5px 0;
    }
    
    /* Stack the Getting Started cards on mobile */
    .col-md-6 {
        width: 100%;
    }
    
    .copy-field {
        flex-direction: column;
    }
    
    .copy-field input {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .copy-field button {
        width: 100%;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group input {
        width: 100%;
        margin-bottom: 10px;
        border-radius: 5px !important;
    }
    
    .input-group button {
        width: 100%;
        border-radius: 5px !important;
    }
    
    .faq-card {
        padding: 15px;
    }
    
    .faq-card h3 {
        font-size: 1.1rem;
    }
    
    footer {
        padding: 15px;
        margin-top: 30px;
    }
    
    main {
        padding: 20px 10px;
    }
    
    pre {
        overflow-x: auto;
        font-size: 0.7rem !important;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .col-md-3, .col-md-6 {
        padding-left: 0;
        padding-right: 0;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #2c2b2b;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}