/* Start custom CSS for html, class: .elementor-element-cc3dde8 *//* YouTube Brand Colors */
:root {
    --yt-red: #FF0000;
    --yt-black: #212121;
    --yt-white: #FFFFFF;
    --yt-light-gray: #F0F0F0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--yt-white); /* Background White hi ho */
    color: var(--yt-black);
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    width: 100%;
    background: var(--yt-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Header & Title Styling */
.header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--yt-light-gray);
    padding-bottom: 20px;
}

.main-title {
    font-size: 2.5rem;
    color: var(--yt-black);
    margin-bottom: 5px;
}

.yt-red {
    color: var(--yt-red); /* YouTube logo color */
    font-weight: 700;
}

.subtitle {
    font-size: 1.1rem;
    color: #606060;
}

/* Tool Input Area */
.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

#video-url {
    flex-grow: 1;
    padding: 12px 15px;
    border: 2px solid var(--yt-light-gray);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

#video-url:focus {
    border-color: var(--yt-red);
    outline: none;
}

.yt-red-bg {
    background-color: var(--yt-red); /* YouTube logo color k motabik ho */
    color: var(--yt-white);
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.1s;
    white-space: nowrap; /* Button text doesn't wrap */
}

.yt-red-bg:hover {
    background-color: #CC0000; /* Darker red on hover */
}

.yt-red-bg:active {
    transform: scale(0.98);
}

/* Result & Download Area */
.result-box {
    min-height: 200px;
    border: 2px dashed var(--yt-light-gray);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    background-color: var(--yt-light-gray);
    text-align: center;
}

.result-box p {
    color: #606060;
}

.thumbnail-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.download-options {
    text-align: center;
    padding: 20px 0;
}

.download-options h3 {
    color: var(--yt-black);
    margin-bottom: 15px;
}

.download-btn {
    display: inline-block;
    background-color: var(--yt-black); /* Dark color for contrast */
    color: var(--yt-white);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin: 5px;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #444;
}

.hidden {
    display: none;
}

/* SEO & Info Section */
.info-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--yt-light-gray);
}

.section-title {
    color: var(--yt-red);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.disclaimer-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
    border-left: 3px solid var(--yt-red);
    padding-left: 10px;
}

/* Responsive Design (Ho Response ho) */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    .main-title {
        font-size: 2rem;
    }

    .input-group {
        flex-direction: column;
    }

    .yt-red-bg {
        width: 100%;
    }

    .download-options {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .download-btn {
        width: 100%;
        box-sizing: border-box;
        margin: 5px 0;
    }
}/* End custom CSS */