/* Modern TS3 Page Styling */
.ts3-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px 20px;
    min-height: 80vh;
}

/* Header Section */
.ts3-hero {
    text-align: center;
    margin-bottom: 40px;
}

.ts3-logo-container {
    margin-bottom: 30px;
}

.ts3-logo-container img {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 30px rgba(0, 150, 255, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.ts3-logo-container img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 40px rgba(0, 150, 255, 0.6));
}

.ts3-hero h1 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ts3-hero p {
    color: #888;
    font-size: 1rem;
    margin-bottom: 25px;
}

/* Action Buttons */
.ts3-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.ts3-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(136, 136, 136, 0.3);
}

.ts3-btn-primary {
    background: linear-gradient(135deg, #0096FF 0%, #0070cc 100%);
    color: #fff;
    border-color: #0096FF;
    box-shadow: 0 4px 15px rgba(0, 150, 255, 0.3);
}

.ts3-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 150, 255, 0.5);
}

.ts3-btn-secondary {
    background: rgba(30, 30, 40, 0.8);
    color: #ccc;
    backdrop-filter: blur(10px);
}

.ts3-btn-secondary:hover {
    background: rgba(0, 150, 255, 0.2);
    border-color: rgba(0, 150, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

/* Viewer Container */
.ts3-viewer-container {
    background: linear-gradient(145deg, rgba(30, 30, 45, 0.95) 0%, rgba(20, 20, 30, 0.98) 100%);
    border: 1px solid rgba(136, 136, 136, 0.15);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ts3-viewer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(136, 136, 136, 0.2);
}

.ts3-viewer-header::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #0096FF, #0070cc);
    border-radius: 2px;
}

.ts3-viewer-header h2 {
    color: #fff;
    font-size: 1.3rem;
    margin: 0;
}

.ts3-viewer-header .online-badge {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

#ts3viewer_1113048 {
    min-height: 400px;
    padding: 10px;
}

/* Footer */
.ts3-footer {
    text-align: center;
    padding: 30px;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .ts3-actions {
        flex-direction: column;
        align-items: center;
    }

    .ts3-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .ts3-viewer-container {
        padding: 20px 15px;
    }
}