table {
    border-collapse: collapse;
    width: 100%;
}

th,
td {
    border: 1px solid #49760d;
    padding: 5px 10px;
}

blockquote {
    padding-left: 15px;
    border-left: 3px solid #82b440;
}

blockquote p {
    font-size: 0.9rem !important;
    font-style: italic;
}

.table-wrapper {
    max-width: 100%;
    overflow: auto;
}

.content a {
    color: #82b440;
}

.converter-section {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.converter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ffd93d 50%, #6bcf7f 100%);
    border-radius: 20px 20px 0 0;
}

.converter-section h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 50%, #6bcf7f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.converter-section>p {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.converter-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.video-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.video-input:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

.convert-button {
    padding: 18px 35px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.convert-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.convert-button:hover::before {
    left: 100%;
}

.convert-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
}

.convert-button:active {
    transform: translateY(0);
}

.button-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.format-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 10px 0;
}

.format-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 15px 25px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.format-label:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.format-label input[type="radio"] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    position: relative;
    outline: none;
    appearance: none;
}

.format-label input[type="radio"]:checked {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.2);
}

.format-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff6b6b;
}

.format-text {
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 500;
}

.form-note {
    text-align: center;
    color: #6bcf7f;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 10px;
    padding: 15px;
    background: rgba(107, 207, 127, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(107, 207, 127, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .converter-section {
        padding: 30px 20px;
        margin: 20px;
    }

    .converter-section h2 {
        font-size: 2rem;
    }

    .input-group {
        flex-direction: column;
    }

    .format-options {
        flex-direction: column;
        gap: 15px;
    }

    .format-label {
        justify-content: center;
    }
}

/* Decorative Elements */
.converter-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-20px, -20px) rotate(90deg);
    }

    50% {
        transform: translate(20px, -40px) rotate(180deg);
    }

    75% {
        transform: translate(-40px, 20px) rotate(270deg);
    }
}