/* Webonya YouTube Shorts Embed Generator - Complete Styles */
/* WordPress bağımsız, Webonya tasarımına uygun */

/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: none;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo a:hover .logo-img {
    opacity: 0.8;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #3b82f6;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e2e8f0;
    list-style: none;
}

.dropdown-menu li {
    margin: 0;
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: #3b82f6;
    padding-left: 25px;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

/* Hero Section - Removed as it's now integrated into the embed container */

/* Content Section */
.content {
    margin: 60px 0;
}

.content-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.content-wrapper h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 20px;
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
}

/* YouTube Shorts Embed Generator - Namespaced Styles */
.youtube-shorts-embed-container {
    /* Elementor'u etkilemeyecek şekilde izole edildi */
    contain: layout style paint;
    isolation: isolate;
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 40px 0;
    /* Elementor'u bozmayacak şekilde sınırlandırıldı */
}

.youtube-shorts-embed-container .youtube-shorts-embed-wrapper {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    /* Elementor'u etkilemeyecek şekilde izole edildi */
    contain: layout style paint;
}

.youtube-shorts-embed-container .youtube-shorts-embed-header {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 40px;
    text-align: center;
    position: relative;
}

.youtube-shorts-embed-container .youtube-shorts-embed-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: youtube-shorts-shimmer 3s infinite;
    z-index: -1;
}

@keyframes youtube-shorts-shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.youtube-shorts-embed-container .youtube-shorts-embed-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.youtube-shorts-embed-container .youtube-shorts-embed-header h2::before {
    content: '';
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.youtube-shorts-embed-container .youtube-shorts-embed-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
}

.youtube-shorts-embed-container .youtube-shorts-embed-form-container {
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.youtube-shorts-embed-container .youtube-shorts-embed-form-group {
    margin-bottom: 30px;
    position: relative;
}

.youtube-shorts-embed-container .youtube-shorts-embed-form-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.youtube-shorts-embed-container .youtube-shorts-embed-form-group label::before {
    content: '';
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.youtube-shorts-embed-container .youtube-shorts-embed-form-group:nth-child(1) label::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%233b82f6' viewBox='0 0 24 24'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/svg%3E");
}

.youtube-shorts-embed-container .youtube-shorts-embed-form-group:nth-child(2) label::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%233b82f6' viewBox='0 0 24 24'%3E%3Cpath d='M21 3H3v18h18V3zm-2 16H5V5h14v14zM7 7h10v2H7V7zm0 4h10v2H7v-2zm0 4h7v2H7v-2z'/%3E%3C/svg%3E");
}

.youtube-shorts-embed-container .youtube-shorts-embed-form-group:nth-child(3) label::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%233b82f6' viewBox='0 0 24 24'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
}

.youtube-shorts-embed-container .youtube-shorts-embed-form-group:nth-child(4) label::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%233b82f6' viewBox='0 0 24 24'%3E%3Cpath d='M12 15.5A3.5 3.5 0 0 1 8.5 12A3.5 3.5 0 0 1 12 8.5a3.5 3.5 0 0 1 3.5 3.5 3.5 3.5 0 0 1-3.5 3.5m7.43-2.53c.04-.32.07-.64.07-.97 0-.33-.03-.66-.07-1l2.11-1.63c.19-.15.24-.42.12-.64l-2-3.46c-.12-.22-.39-.31-.61-.22l-2.49 1c-.52-.39-1.06-.73-1.69-.98l-.37-2.65A.506.506 0 0 0 14 2h-4c-.25 0-.46.18-.5.42l-.37 2.65c-.63.25-1.17.59-1.69.98l-2.49-1c-.22-.09-.49 0-.61.22l-2 3.46c-.13.22-.07.49.12.64L4.57 11c-.04.34-.07.67-.07 1 0 .33.03.65.07.97L2.46 14.4c-.19.15-.25.42-.12.64l2 3.46c.12.22.39.3.61.22l2.49-1.01c.52.4 1.06.74 1.69.99l.37 2.65c.04.24.25.42.5.42h4c.25 0 .46-.18.5-.42l.37-2.65c.63-.26 1.17-.59 1.69-.99l2.49 1.01c.22.08.49 0 .61-.22l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.66Z'/%3E%3C/svg%3E");
}

.youtube-shorts-embed-container .youtube-shorts-embed-input,
.youtube-shorts-embed-container .youtube-shorts-embed-select {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #374151;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.youtube-shorts-embed-container .youtube-shorts-embed-input:focus,
.youtube-shorts-embed-container .youtube-shorts-embed-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), 0 4px 12px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.youtube-shorts-embed-container .youtube-shorts-embed-generate-btn {
    background: #3b82f6 !important;
    color: white !important;
    border: none;
    padding: 20px 40px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
    position: relative;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-sizing: border-box;
}

.youtube-shorts-embed-container .youtube-shorts-embed-generate-btn::before {
    content: '';
    width: 24px !important;
    height: 24px !important;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M8 4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v1h2a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2V4zm2 0h4v1h-4V4zm-2 3H6v10h12V7h-2v1a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1V7z'/%3E%3C/svg%3E") no-repeat center !important;
    background-size: contain !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.youtube-shorts-embed-container .youtube-shorts-embed-generate-btn::after {
    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.5s;
    z-index: -1;
}

.youtube-shorts-embed-container .youtube-shorts-embed-generate-btn:hover::after {
    left: 100%;
}

.youtube-shorts-embed-container .youtube-shorts-embed-generate-btn:hover {
    background: #1e40af !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.youtube-shorts-embed-container .youtube-shorts-embed-generate-btn:active {
    transform: translateY(-1px);
}

.youtube-shorts-embed-container .youtube-shorts-embed-output-container {
    padding: 40px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-top: 1px solid #cbd5e1;
    display: none;
}

.youtube-shorts-embed-container .youtube-shorts-embed-output-container.show {
    display: block;
    animation: youtube-shorts-slideInUp 0.6s ease-out;
}

@keyframes youtube-shorts-slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.youtube-shorts-embed-container .youtube-shorts-embed-output-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.youtube-shorts-embed-container .youtube-shorts-embed-output-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.youtube-shorts-embed-container .youtube-shorts-embed-output-header h3::before {
    content: '';
    width: 28px;
    height: 28px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%233b82f6' viewBox='0 0 24 24'%3E%3Cpath d='M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.youtube-shorts-embed-container .youtube-shorts-embed-copy-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
}

.youtube-shorts-embed-container .youtube-shorts-embed-copy-btn::before {
    content: '';
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.youtube-shorts-embed-container .youtube-shorts-embed-copy-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.youtube-shorts-embed-container .youtube-shorts-embed-code-output {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #f9fafb;
    padding: 30px;
    border-radius: 15px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-all;
    width: 100%;
    border: none;
    resize: vertical;
    min-height: 180px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.3);
    position: relative;
    box-sizing: border-box;
}

.youtube-shorts-embed-container .youtube-shorts-embed-code-output::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 20px;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0L19.2 12l-4.6-4.6L16 6l6 6-6 6-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0.3;
}

.youtube-shorts-embed-container .youtube-shorts-embed-preview-container {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
}

.youtube-shorts-embed-container .youtube-shorts-embed-preview-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 25px;
    width: 28px;
    height: 28px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%233b82f6' viewBox='0 0 24 24'%3E%3Cpath d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.youtube-shorts-embed-container .youtube-shorts-embed-preview-container h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 25px 0;
    padding-left: 40px;
}

.youtube-shorts-embed-container .youtube-shorts-embed-footer {
    padding: 30px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid #cbd5e1;
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
    position: relative;
}

.youtube-shorts-embed-container .youtube-shorts-embed-footer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%233b82f6' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.youtube-shorts-embed-container .youtube-shorts-embed-footer p {
    margin: 0;
    padding-left: 40px;
}

/* Hover efektleri */
.youtube-shorts-embed-container .youtube-shorts-embed-form-group:hover label {
    color: #3b82f6;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* Footer Styles */
.footer {
    background: #1f2937;
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: none;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #3b82f6;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 20px;
        border-radius: 0 0 15px 15px;
        overflow-x: hidden;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8fafc;
        margin-top: 10px;
        border-radius: 0;
    }
    
    .dropdown-menu a {
        padding: 10px 15px;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }
    
    .btn-primary {
        display: none;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo-img {
        height: 35px;
        width: auto;
        object-fit: contain;
    }
    
    /* Hero section removed */
    
    .youtube-shorts-embed-container .youtube-shorts-embed-header {
        padding: 30px 20px;
    }
    
    .youtube-shorts-embed-container .youtube-shorts-embed-header h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .youtube-shorts-embed-container .youtube-shorts-embed-form-container {
        padding: 30px 20px;
    }
    
    .youtube-shorts-embed-container .youtube-shorts-embed-output-container {
        padding: 30px 20px;
    }
    
    .youtube-shorts-embed-container .youtube-shorts-embed-footer {
        padding: 25px 20px;
    }
    
    .youtube-shorts-embed-container .youtube-shorts-embed-output-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .youtube-shorts-embed-container .youtube-shorts-embed-copy-btn {
        width: 100%;
        padding: 15px;
        justify-content: center;
    }
    
    .youtube-shorts-embed-container .youtube-shorts-embed-generate-btn {
        padding: 18px 25px;
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    /* Hero section removed */
    
    .youtube-shorts-embed-container .youtube-shorts-embed-header h2 {
        font-size: 1.5rem;
    }
    
    .youtube-shorts-embed-container .youtube-shorts-embed-preview-container iframe {
        width: 100% !important;
        height: 300px !important;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Elementor Güvenliği - Ekstra Koruma */
.elementor-page .youtube-shorts-embed-container {
    /* Elementor sayfalarında ekstra izolasyon */
    contain: strict;
    isolation: isolate;
    position: relative;
    z-index: 1;
}

.elementor-page .youtube-shorts-embed-container .youtube-shorts-embed-wrapper {
    /* Elementor sayfalarında ekstra izolasyon */
    contain: layout style paint;
    isolation: isolate;
}

/* Elementor'u etkilemeyecek şekilde sınırlandırıldı */
.youtube-shorts-embed-container * {
    /* Tüm child elementler için box-sizing */
    box-sizing: border-box;
}

.youtube-shorts-embed-container *:not(.youtube-shorts-embed-container) {
    /* Sadece kendi container'ımızı etkiler */
    position: relative;
}