/* Page-specific styles for non-index pages */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(20, 20, 20, 0.98), rgba(20, 20, 20, 0.9));
    backdrop-filter: blur(15px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 3px solid #5d4c37;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.site-header .header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.site-header .logo {
    text-decoration: none;
}

.site-header .logo h2 {
    color: #ffd700;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.site-header .logo:hover h2 {
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.site-header .main-nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

.site-header .main-nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.site-header .main-nav ul li a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.site-header .main-nav ul li a.active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

/* Page Content */
.page-content {
    flex: 1;
    padding-top: 80px;
    padding-bottom: 40px;
    background: linear-gradient(135deg, #0d1f0d, #1a2f1a);
    min-height: calc(100vh - 150px);
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #5d9c59;
    text-shadow: 0 0 20px rgba(93, 156, 89, 0.5);
    margin-bottom: 10px;
}

.page-header p {
    color: #aaa;
    font-size: 1.1rem;
}

/* Server IP Box */
.server-ip-box {
    background: rgba(0, 0, 0, 0.7);
    border: 4px solid #5d9c59;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 0 30px rgba(93, 156, 89, 0.3);
    text-align: center;
}

.ip-label {
    color: #888;
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ip-display {
    font-size: 3rem;
    font-weight: bold;
    color: #7cfc00;
    font-family: 'Consolas', monospace;
    text-shadow: 0 0 20px rgba(124, 252, 0, 0.7);
    letter-spacing: 3px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ip-display:hover {
    color: #98fb98;
    transform: scale(1.05);
}

.ip-display:active {
    transform: scale(0.98);
}

.copy-hint {
    color: #666;
    font-size: 0.9rem;
}

/* Steps Container */
.steps-container {
    background: rgba(20, 20, 30, 0.8);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steps-container h2 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 4px solid #5d9c59;
}

.step-number {
    background: linear-gradient(135deg, #5d9c59, #4a7c47);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-text {
    color: #ddd;
}

.step-text strong {
    color: #ffd700;
}

/* Version Info */
.version-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.version-badge {
    background: rgba(93, 156, 89, 0.2);
    border: 2px solid #5d9c59;
    padding: 10px 25px;
    border-radius: 25px;
    color: #7cfc00;
    font-weight: bold;
    font-size: 0.95rem;
}

.version-badge.online {
    border-color: #7cfc00;
    animation: pulse 2s ease-in-out infinite;
}

/* Launch Button */
.launch-btn {
    display: inline-block;
    background: linear-gradient(135deg, #5d9c59, #4a7c47);
    color: white;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(93, 156, 89, 0.4);
}

.launch-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(93, 156, 89, 0.6);
}

/* Footer */
.site-footer {
    background: linear-gradient(to top, #0a0a0a, #151515);
    padding: 30px 20px;
    border-top: 2px solid #2d2d2d;
}

.site-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.site-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.site-footer .footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer .footer-links a:hover {
    color: #ffd700;
}

.site-footer .footer-social {
    margin-bottom: 15px;
}

.site-footer .footer-social a {
    font-size: 1.8rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.site-footer .footer-social a:hover {
    transform: scale(1.2);
}

.site-footer .footer-copyright {
    color: #555;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header .header-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .site-header .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .site-header .main-nav ul li a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .ip-display {
        font-size: 2rem;
    }
    
    .launch-btn {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
}