/* TeamSpeak Page Styles */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
}

/* TeamSpeak Banner */
.ts-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: linear-gradient(135deg, rgba(37, 128, 195, 0.2), rgba(37, 128, 195, 0.05));
    border: 1px solid rgba(37, 128, 195, 0.4);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 50px;
}

.ts-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ts-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2580C3, #1a5c8a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ts-icon svg {
    width: 36px;
    height: 36px;
    stroke: white;
}

.ts-details h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: #e8e8e8;
    margin-bottom: 5px;
}

.ts-details p {
    color: #a0a0a0;
    font-size: 0.95rem;
}

.connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #2580C3, #1a5c8a);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.connect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 128, 195, 0.4);
    filter: brightness(1.15);
}

.connect-btn svg {
    width: 20px;
    height: 20px;
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #e8e8e8;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #d4af37, #f97316);
    border-radius: 2px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: rgba(37, 128, 195, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(37, 128, 195, 0.15);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2580C3, #1a5c8a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 18px;
}

.step-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #e8e8e8;
    margin-bottom: 12px;
}

.step-card p {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2580C3;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.step-link:hover {
    color: #5aa8e0;
}

.copy-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(37, 128, 195, 0.3);
    border-radius: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-field:hover {
    border-color: rgba(37, 128, 195, 0.6);
    background: rgba(37, 128, 195, 0.1);
}

.copy-field.copied {
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(212, 175, 55, 0.1);
}

.copy-field code {
    font-family: 'Poppins', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: #e8e8e8;
    letter-spacing: 0.5px;
}

.copy-field svg {
    stroke: #a0a0a0;
    flex-shrink: 0;
    transition: stroke 0.2s;
}

.copy-field:hover svg {
    stroke: #2580C3;
}

.copy-field.copied svg {
    stroke: #d4af37;
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 50px;
}

.detail-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a0a0a0;
    margin-bottom: 8px;
}

.detail-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: #e8e8e8;
    font-weight: 700;
}

/* Channels List */
.channels-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 10px;
    transition: background 0.2s;
}

.channel-item:hover {
    background: rgba(37, 128, 195, 0.1);
}

.channel-item svg {
    width: 22px;
    height: 22px;
    stroke: #2580C3;
    flex-shrink: 0;
}

.channel-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #e8e8e8;
    font-size: 1rem;
    flex-grow: 1;
}

.channel-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
    font-weight: 500;
}

.channel-badge.highlight {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    color: #d4af37;
}

.channel-item.dim {
    opacity: 0.5;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(37, 128, 195, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(37, 128, 195, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(37, 128, 195, 0.2), rgba(37, 128, 195, 0.1));
    border: 1px solid rgba(37, 128, 195, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    stroke: #2580C3;
}

.feature-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #e8e8e8;
    margin-bottom: 12px;
}

.feature-card p {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(249, 115, 22, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.cta-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #e8e8e8;
    margin-bottom: 15px;
}

.cta-section p {
    color: #a0a0a0;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #2580C3, #1a5c8a);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 128, 195, 0.4);
    filter: brightness(1.15);
}

.cta-button svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .ts-banner {
        flex-direction: column;
        text-align: center;
    }

    .ts-info {
        flex-direction: column;
    }

    .connect-btn {
        width: 100%;
        justify-content: center;
    }

    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section {
        padding: 30px 20px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}
