/* DoroIPTV Plugin - Responsive Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    line-height: 1.6;
}

.doroiptv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Hero Section */
.doroiptv-hero {
    padding: 60px 20px 80px;
    background: linear-gradient(135deg, #111827, #7f1d1d, #111827);
    position: relative;
    overflow: hidden;
}

.doroiptv-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: #dc2626;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(96px);
    opacity: 0.2;
}

.doroiptv-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: #ef4444;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(96px);
    opacity: 0.2;
}

.doroiptv-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.doroiptv-logo-wrapper {
    margin-bottom: 24px;
}

.doroiptv-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.doroiptv-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(to right, #f87171, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.doroiptv-subtitle {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 28px;
    line-height: 1.6;
}

.doroiptv-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.doroiptv-btn-primary {
    background: linear-gradient(to right, #dc2626, #b91c1c);
    color: white;
    box-shadow: 0 10px 15px rgba(220, 38, 38, 0.3);
}

.doroiptv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px rgba(220, 38, 38, 0.4);
}

.doroiptv-btn-block {
    width: 100%;
    display: block;
}

.doroiptv-hero-image {
    display: flex;
    justify-content: center;
}

.doroiptv-card {
    width: 100%;
    max-width: 280px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border-radius: 20px;
    box-shadow: 0 20px 25px rgba(0,0,0,0.5);
    padding: 40px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease;
}

.doroiptv-card:hover {
    transform: scale(1.02);
}

.doroiptv-card-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.doroiptv-card h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
}

.doroiptv-card p {
    color: #fecaca;
    font-size: 16px;
}

/* Disclaimer */
.doroiptv-disclaimer {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #dc2626;
    font-size: 13px;
    line-height: 1.6;
}

/* Download Section */
.doroiptv-download {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #1f2937, #111827);
}

.doroiptv-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.doroiptv-section-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.doroiptv-section-header h2 {
    font-size: 40px;
    font-weight: bold;
    color: white;
    margin-bottom: 16px;
}

.doroiptv-divider {
    width: 80px;
    height: 4px;
    margin: 0 auto;
    border-radius: 9999px;
    background: linear-gradient(to right, #dc2626, #f87171);
}

.doroiptv-download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 40px;
}

.doroiptv-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #dc2626;
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    flex-wrap: wrap;
}

.doroiptv-download-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border-color: #dc2626;
}

.doroiptv-icon {
    font-size: 20px;
}

.doroiptv-download-info {
    background: linear-gradient(to right, #dc2626, #b91c1c);
    border-radius: 8px;
    padding: 28px;
    text-align: center;
    border: 2px solid #f87171;
    box-shadow: 0 10px 15px rgba(0,0,0,0.3);
}

.doroiptv-download-title {
    color: white;
    font-weight: bold;
    margin-bottom: 12px;
    font-size: 16px;
}

.doroiptv-download-link {
    color: #fef08a;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

.doroiptv-download-link:hover {
    text-decoration: underline;
}

.doroiptv-download-code {
    color: #1f2937;
    font-size: 14px;
}

.doroiptv-download-code span {
    font-weight: bold;
    font-size: 16px;
}

/* Features Section */
.doroiptv-features {
    padding: 60px 20px;
    background: white;
}

.doroiptv-section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 8px;
    color: #111827;
}

.doroiptv-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.doroiptv-feature-card {
    padding: 24px;
    border-radius: 12px;
    background: white;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease;
}

.doroiptv-feature-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.doroiptv-feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.doroiptv-feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.doroiptv-feature-card p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

/* About Section */
.doroiptv-about {
    padding: 60px 20px;
    background: #f9fafb;
}

.doroiptv-about-content {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: center;
}

.doroiptv-about-content p {
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

/* How to Use Section */
.doroiptv-how-to {
    padding: 60px 20px;
    background: white;
}

.doroiptv-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.doroiptv-step {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.doroiptv-step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #dc2626;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.doroiptv-step h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.doroiptv-step p {
    color: #4b5563;
    font-size: 14px;
}

/* Manage Page */
.doroiptv-manage-page {
    background: linear-gradient(to bottom, #111827, #1f2937, #111827);
    min-height: 100vh;
    padding: 40px 20px;
}

.doroiptv-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.doroiptv-page-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.doroiptv-page-header h1 {
    font-size: 40px;
    font-weight: bold;
    color: white;
    margin-bottom: 12px;
    background: linear-gradient(to right, #f87171, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.doroiptv-page-header p {
    font-size: 16px;
    color: #d1d5db;
}

.doroiptv-auth-box {
    background: #1f2937;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #374151;
    margin-bottom: 32px;
}

.doroiptv-auth-form {
    text-align: center;
}

.doroiptv-auth-form p {
    color: #d1d5db;
    font-size: 15px;
    margin-bottom: 20px;
}

.doroiptv-form-group {
    margin-bottom: 16px;
    text-align: left;
}

.doroiptv-form-group label {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.doroiptv-form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #374151;
    background: #111827;
    color: white;
    font-size: 14px;
}

.doroiptv-form-group input:focus {
    outline: none;
    border-color: #dc2626;
}

.doroiptv-instructions {
    background: #1f2937;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #374151;
}

.doroiptv-instructions h2 {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

.doroiptv-instructions ul {
    color: #d1d5db;
    line-height: 1.8;
    list-position: inside;
}

.doroiptv-instructions li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Activate Page */
.doroiptv-activate-page {
    background: linear-gradient(to bottom, #111827, #1f2937, #111827);
    min-height: 100vh;
    padding: 40px 20px;
}

.doroiptv-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
    margin-top: 40px;
}

.doroiptv-pricing-card {
    background: linear-gradient(135deg, #1f2937, #111827);
    border-radius: 12px;
    padding: 28px;
    border: 2px solid #374151;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.doroiptv-pricing-card-popular {
    border: 2px solid #dc2626;
    transform: scale(1.05);
}

.doroiptv-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #dc2626, #b91c1c);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.doroiptv-pricing-card h3 {
    color: white;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 16px;
}

.doroiptv-price {
    background: linear-gradient(to right, #dc2626, #b91c1c);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.doroiptv-price-label {
    color: white;
    font-size: 12px;
    margin-bottom: 8px;
}

.doroiptv-price-value {
    color: white;
    font-size: 44px;
    font-weight: bold;
}

.doroiptv-features-list {
    color: #d1d5db;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.8;
    list-style: none;
}

.doroiptv-features-list li {
    font-size: 14px;
    margin-bottom: 8px;
}

.doroiptv-activation-info {
    background: #1f2937;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid #374151;
}

.doroiptv-activation-info h2 {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

.doroiptv-activation-info ol {
    color: #d1d5db;
    line-height: 1.8;
    padding-left: 20px;
}

.doroiptv-activation-info li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .doroiptv-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .doroiptv-title {
        font-size: 32px;
    }

    .doroiptv-subtitle {
        font-size: 16px;
    }

    .doroiptv-section-header h2 {
        font-size: 28px;
    }

    .doroiptv-section-title {
        font-size: 28px;
    }

    .doroiptv-page-header h1 {
        font-size: 28px;
    }

    .doroiptv-download-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 10px;
    }

    .doroiptv-download-btn {
        padding: 12px;
        font-size: 12px;
    }

    .doroiptv-icon {
        font-size: 18px;
    }

    .doroiptv-features-grid,
    .doroiptv-steps-grid,
    .doroiptv-pricing-grid {
        grid-template-columns: 1fr;
    }

    .doroiptv-pricing-card-popular {
        transform: scale(1);
    }

    .doroiptv-hero {
        padding: 40px 20px 60px;
    }

    .doroiptv-download {
        padding: 40px 20px;
    }

    .doroiptv-features,
    .doroiptv-about,
    .doroiptv-how-to {
        padding: 40px 20px;
    }

    .doroiptv-section-header {
        margin-bottom: 32px;
    }

    .doroiptv-page-header {
        margin-bottom: 30px;
    }

    .doroiptv-logo {
        height: 60px;
    }

    .doroiptv-section-logo {
        height: 50px;
    }

    .doroiptv-page-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .doroiptv-container {
        padding: 0 15px;
    }

    .doroiptv-title {
        font-size: 24px;
    }

    .doroiptv-subtitle {
        font-size: 14px;
    }

    .doroiptv-section-header h2 {
        font-size: 22px;
    }

    .doroiptv-section-title {
        font-size: 22px;
    }

    .doroiptv-page-header h1 {
        font-size: 22px;
    }

    .doroiptv-download-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .doroiptv-download-btn {
        padding: 10px;
        font-size: 11px;
        gap: 4px;
    }

    .doroiptv-icon {
        font-size: 16px;
    }

    .doroiptv-price-value {
        font-size: 32px;
    }

    .doroiptv-card {
        max-width: 100%;
        padding: 24px;
    }

    .doroiptv-hero {
        padding: 30px 15px 50px;
    }

    .doroiptv-download {
        padding: 30px 15px;
    }

    .doroiptv-features,
    .doroiptv-about,
    .doroiptv-how-to {
        padding: 30px 15px;
    }

    .doroiptv-auth-box,
    .doroiptv-instructions,
    .doroiptv-activation-info {
        padding: 20px;
    }

    .doroiptv-download-info {
        padding: 20px;
    }

    .doroiptv-manage-page,
    .doroiptv-activate-page {
        padding: 30px 15px;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.doroiptv-title {
    animation: fadeInDown 0.8s ease-out;
}

.doroiptv-feature-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .doroiptv-home-page,
    .doroiptv-manage-page,
    .doroiptv-activate-page {
        background: white !important;
    }
}


/* ============================================
   HEADER WITH LOGO
   ============================================ */

.doroiptv-header {
    background: linear-gradient(135deg, #111827, #1f2937);
    padding: 20px;
    border-bottom: 2px solid #dc2626;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.doroiptv-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.doroiptv-header-logo {
    flex-shrink: 0;
}

.doroiptv-header-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.doroiptv-header-logo-img:hover {
    transform: scale(1.05);
}

.doroiptv-header-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(to right, #f87171, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   FOOTER WITH LOGO
   ============================================ */

.doroiptv-footer {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: white;
    padding: 40px 20px;
    border-top: 2px solid #dc2626;
    margin-top: 60px;
}

.doroiptv-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.doroiptv-footer-logo {
    flex-shrink: 0;
}

.doroiptv-footer-logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.doroiptv-footer-logo-img:hover {
    transform: scale(1.05);
}

.doroiptv-footer-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    background: linear-gradient(to right, #f87171, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.doroiptv-footer-info p {
    color: #d1d5db;
    margin-bottom: 8px;
    font-size: 14px;
}

.doroiptv-footer-copyright {
    color: #9ca3af;
    font-size: 12px !important;
    margin-top: 12px;
}

/* ============================================
   LOGO IN SECTIONS
   ============================================ */

.doroiptv-features-header,
.doroiptv-about-header,
.doroiptv-how-to-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.doroiptv-features-logo,
.doroiptv-about-logo,
.doroiptv-how-to-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.doroiptv-features-logo:hover,
.doroiptv-about-logo:hover,
.doroiptv-how-to-logo:hover {
    transform: scale(1.08);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    .doroiptv-header-content {
        gap: 12px;
    }

    .doroiptv-header-logo-img {
        height: 40px;
    }

    .doroiptv-header-title {
        font-size: 18px;
    }

    .doroiptv-footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .doroiptv-footer-logo-img {
        height: 60px;
    }

    .doroiptv-features-logo,
    .doroiptv-about-logo,
    .doroiptv-how-to-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .doroiptv-header-logo-img {
        height: 35px;
    }

    .doroiptv-header-title {
        font-size: 16px;
    }

    .doroiptv-footer-logo-img {
        height: 50px;
    }

    .doroiptv-features-logo,
    .doroiptv-about-logo,
    .doroiptv-how-to-logo {
        height: 40px;
    }
}


/* Playlist Management Styles */
.doroiptv-playlist-section {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    border: 2px solid #dc2626;
}

.doroiptv-playlist-header {
    text-align: center;
    margin-bottom: 30px;
}

.doroiptv-playlist-header h2 {
    color: #fbbf24;
    font-size: 28px;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.doroiptv-playlist-header p {
    color: #9ca3af;
    font-size: 16px;
}

.doroiptv-playlist-form-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(220,38,38,0.3);
    margin-bottom: 30px;
}

.doroiptv-playlist-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doroiptv-form-help {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 5px;
}

.doroiptv-form-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid rgba(220,38,38,0.2);
    margin-bottom: 20px;
}

.doroiptv-tab-btn {
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.doroiptv-tab-btn:hover {
    color: #fbbf24;
}

.doroiptv-tab-btn.active {
    color: #fbbf24;
    border-bottom-color: #dc2626;
}

.doroiptv-tab-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.doroiptv-playlists-list-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(220,38,38,0.3);
    margin-bottom: 20px;
}

.doroiptv-playlists-list-box h3 {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 18px;
}

.doroiptv-playlists-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.doroiptv-playlist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(220,38,38,0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.doroiptv-playlist-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(220,38,38,0.4);
}

.doroiptv-playlist-info {
    flex: 1;
}

.doroiptv-playlist-info h4 {
    color: #e5e7eb;
    margin-bottom: 5px;
    font-size: 16px;
}

.doroiptv-playlist-type {
    color: #fbbf24;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
}

.doroiptv-playlist-detail {
    color: #9ca3af;
    font-size: 13px;
    margin-bottom: 5px;
    word-break: break-all;
}

.doroiptv-playlist-date {
    color: #6b7280;
    font-size: 12px;
}

.doroiptv-playlist-actions {
    display: flex;
    gap: 10px;
    margin-left: 15px;
}

.doroiptv-btn-small {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.doroiptv-btn-edit {
    background: #3b82f6;
    color: white;
}

.doroiptv-btn-edit:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.doroiptv-btn-delete {
    background: #ef4444;
    color: white;
}

.doroiptv-btn-delete:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

.doroiptv-btn-secondary {
    background: #6b7280;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.doroiptv-btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

.doroiptv-no-playlists {
    text-align: center;
    color: #9ca3af;
    padding: 20px;
    font-style: italic;
}

.doroiptv-auth-form-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .doroiptv-playlist-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .doroiptv-playlist-actions {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }

    .doroiptv-playlist-actions button {
        flex: 1;
    }

    .doroiptv-form-tabs {
        flex-wrap: wrap;
    }

    .doroiptv-tab-btn {
        flex: 1;
        text-align: center;
    }
}
