/* ============================================
   POTATOSERVER CUSTOM STYLES
   All page-specific styles extracted from HTML
   ============================================ */

/* Game Pages Styles */
.game-hero {
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.game-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(133, 120, 230, 0.3) 0%, transparent 50%);
}

.game-hero-content {
    position: relative;
    z-index: 2;
}

.game-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.game-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    background: linear-gradient(-40deg, #ff7109, #ffb900, #ff7109);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.game-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.server-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid #491D8B;
}

.info-card:hover {
    box-shadow: 0 6px 25px rgba(73, 29, 139, 0.15);
    transform: translateY(-5px);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #491D8B, #622AB5);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: #491D8B;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.info-card p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    color: #491D8B;
    font-size: 1.2rem;
}

.server-details {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #491D8B;
}

.detail-value {
    color: #555;
}

.connect-section {
    background: linear-gradient(135deg, #491D8B, #622AB5);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
    color: white;
}

.connect-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.connect-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.server-ip {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 600px;
    font-size: 1.3rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.copy-btn {
    background: white;
    color: #491D8B;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.rules-section {
    margin-top: 3rem;
    background: white;
    border-radius: 20px;
    padding: 3rem;
}

.rules-section h3 {
    font-size: 2rem;
    color: #491D8B;
    margin-bottom: 2rem;
    text-align: center;
}

.rule-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.rule-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.rule-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #491D8B, #622AB5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.rule-content h4 {
    color: #491D8B;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rule-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Footer Styles */
.footer .content {
    padding: 3rem 1rem !important;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 3rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.footer-column {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
}

.footer-column h4 {
    color: white !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.footer-column h4 i {
    color: #8578ea !important;
    font-size: 1.1rem !important;
}

.footer-column a {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    padding: 0.4rem 0 !important;
    transition: all 0.3s ease !important;
    font-size: 0.95rem !important;
}

.footer-column a:hover {
    color: white !important;
    padding-left: 0.5rem !important;
    transform: translateX(5px) !important;
}

.footer-column a i {
    color: #8578ea !important;
    width: 20px !important;
    flex-shrink: 0 !important;
}

.footer-brand {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.footer-logo {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 0.5rem !important;
    filter: drop-shadow(0 4px 10px rgba(133, 120, 234, 0.5)) !important;
}

.footer-brand h3 {
    color: white !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    margin: 0.5rem 0 !important;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem !important;
    margin: 0.5rem 0 1rem !important;
}

.footer-social {
    display: flex !important;
    gap: 1rem !important;
    justify-content: center !important;
    margin: 1rem 0 !important;
}

.footer-social a {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
}

.footer-social a:hover {
    background: #8578ea !important;
    transform: translateY(-3px) scale(1.1) !important;
    padding: 0 !important;
}

.copyright {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 1rem !important;
    line-height: 1.5 !important;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .footer-column {
        text-align: center !important;
    }
    
    .footer-column h4,
    .footer-column a {
        justify-content: center !important;
    }
    
    .footer-column a:hover {
        padding-left: 0 !important;
        transform: translateX(0) !important;
    }
}
