/* Tabs and Tab Content */
.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    position: relative;
    padding: 0.75rem 1.5rem;
    border-radius: 15px;
    border: none;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e0e7ff;
    box-shadow:
        5px 5px 10px rgba(0, 0, 0, 0.3),
        -5px -5px 10px rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.tab-btn.active {
    background: rgba(0, 212, 255, 0.3);
    color: #ffffff;
    box-shadow:
        inset 5px 5px 10px rgba(0, 0, 0, 0.3),
        inset -5px -5px 10px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.5);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    border-radius: 2px;
}

.tab-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow:
        8px 8px 15px rgba(0, 0, 0, 0.4),
        -8px -8px 15px rgba(255, 255, 255, 0.1);
}

.tab-content {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    color: #e0e7ff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tab-content.active {
    display: block;
}

.tab-title {
    font-family: 'Rock Salt', cursive;
    color: #10b981;
    margin-bottom: 1rem;
}

.tab-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
}

.tab-content ul {
    list-style: none;
    padding: 0;
}

.tab-content li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.tab-content li::before {
    content: '•';
    color: #10b981;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}