:root {
    --primary-color: #4CAF50;
    --spotify-color: #1DB954;
    --instagram-color: #E1306C;
    --tiktok-color: #010101;
    --facebook-color: #1877F2;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-light: #ffffff;
    --text-gray: #bbbbbb;
    --input-bg: #2a2a2a;
    --light-bg: #f5f5f5;
    --light-card-bg: #ffffff;
    --light-text: #333333;
    --light-input-bg: #eeeeee;
    --skeleton-bg: #2a2a2a;
    --skeleton-highlight: #3a3a3a;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    margin: 0;
    padding: 0;
    padding-bottom: 80px;
    min-height: 100vh;
    line-height: 1.5;
    transition: background-color 0.3s, color 0.3s;
}

body.light-mode {
    background-color: var(--light-bg);
    color: var(--light-text);
}

body.light-mode .result-card,
body.light-mode .search-container,
body.light-mode .history-item,
body.light-mode .feature-card,
body.light-mode .download-queue,
body.light-mode .url-service-card {
    background-color: var(--light-card-bg);
    color: var(--light-text);
}

body.light-mode .search-input {
    background-color: var(--light-input-bg);
    color: var(--light-text);
}

body.light-mode .skeleton {
    background-color: #e0e0e0 !important;
}

body.light-mode .skeleton::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent) !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    padding-bottom: 80px;
}

.header {
    padding: 15px 0;
    margin-bottom: 10px;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.8rem;
    text-align: center;
    padding: 0 40px;
    flex: 1;
}

.theme-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.theme-toggle button {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.theme-toggle button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

body.light-mode .theme-toggle button {
    color: var(--light-text);
}

body.light-mode .theme-toggle button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.main-tabs {
    display: flex;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--card-bg);
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
    height: 60px;
}

.main-tab {
    padding: 8px 12px;
    background-color: transparent;
    color: var(--text-gray);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.8rem;
    width: 25%;
    height: 100%;
}

.main-tab i {
    font-size: 1.2rem;
}

.main-tab.active {
    color: var(--primary-color);
}

.main-section {
    display: none;
}

.main-section.active {
    display: block;
}

/* Platform tabs */
.platform-tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.platform-tab {
    flex: 1;
    padding: 12px 8px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
    background-color: #333;
    color: white;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    line-height: 1.2;
}

.platform-tab.active {
    background-color: var(--primary-color);
}

.platform-tab.spotify-tab.active {
    background-color: var(--spotify-color);
}

.platform-tab.url-tab.active {
    background-color: var(--primary-color);
}

.search-container {
    background-color: var(--card-bg);
    padding: 15px;
    border-radius: 10px;
    margin: 0 auto 20px;
    max-width: 600px;
    width: 100%;
}

.search-bar {
    display: flex;
    gap: 10px;
    width: 100%;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 5px;
    border: none;
    background-color: var(--input-bg);
    color: white;
    font-size: 1rem;
    min-width: 0;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.search-input:focus {
    outline: 2px solid var(--primary-color);
}

.search-btn {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    white-space: nowrap;
    min-width: 100px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.search-btn.spotify {
    background-color: var(--spotify-color);
}

.search-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.default-downloads {
    margin-bottom: 30px;
    position: relative;
}

/* Section title with loader container */
.section-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 15px;
    padding: 0 5px;
    gap: 15px;
}

.section-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.section-title i {
    font-size: 1.1rem;
}

/* Loader container for inline positioning */
.loader-container {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.loader {
    border: 4px solid #333;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    display: none;
}

.loader.spotify {
    border-top-color: var(--spotify-color);
}

/* Skeleton Loader Styles */
.skeleton {
    background-color: var(--skeleton-bg);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: skeleton-shimmer 2s infinite;
}

.skeleton-thumbnail {
    width: 100%;
    height: 160px;
    background-color: var(--skeleton-bg);
}

.skeleton-title {
    height: 20px;
    width: 80%;
    margin: 15px 15px 10px;
    border-radius: 4px;
    background-color: var(--skeleton-bg);
}

.skeleton-meta {
    height: 14px;
    width: 60%;
    margin: 0 15px 10px;
    border-radius: 4px;
    background-color: var(--skeleton-bg);
}

.skeleton-buttons {
    display: flex;
    gap: 8px;
    margin: 15px;
}

.skeleton-button {
    flex: 1;
    height: 40px;
    border-radius: 5px;
    background-color: var(--skeleton-bg);
}

/* Skeleton for history items */
.skeleton-history {
    height: 70px;
    background-color: var(--skeleton-bg);
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Skeleton for APK results */
.skeleton-apk {
    height: 200px;
    background-color: var(--skeleton-bg);
    border-radius: 10px;
    margin-bottom: 15px;
}

@keyframes skeleton-pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

@keyframes skeleton-shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.results-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 15px;
    padding: 0 5px;
}

.result-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.thumbnail-container {
    position: relative;
}

.thumbnail {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.duration-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.result-info {
    padding: 15px;
}

.result-title {
    font-weight: bold;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.95rem;
    min-height: 2.8em;
    line-height: 1.3;
}

.result-meta {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.result-artist {
    margin-bottom: 5px;
}

.result-album {
    font-style: italic;
}

.download-options {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.download-btn {
    flex: 1;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 6px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    min-height: 40px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.download-btn span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    flex-shrink: 1;
    min-width: 0;
}

.download-btn.spotify {
    background-color: var(--spotify-color);
}

.download-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.download-btn:disabled {
    background-color: #666;
    cursor: not-allowed;
}

.error-message {
    color: #ff6b6b;
    text-align: center;
    padding: 20px;
    display: none;
    font-size: 1rem;
    margin: 20px 0;
}

/* URL Downloader Section - Fixed Height */
.url-downloader-container {
    display: none;
    padding: 0 5px;
    min-height: 500px;
}

.url-downloader-container.active {
    display: block;
    animation: fadeIn 0.5s;
}

/* Updated URL Service Cards - Fixed button text overflow */
.url-service-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.url-service-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    min-height: 85px;
    border-left: 6px solid var(--primary-color);
}

.url-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.url-service-card.facebook {
    border-left-color: var(--facebook-color);
}

.url-service-card.instagram {
    border-left-color: var(--instagram-color);
}

.url-service-card.tiktok {
    border-left-color: var(--tiktok-color);
}

.url-service-card.youtube-audio,
.url-service-card.youtube-video {
    border-left-color: #FF0000;
}

.url-service-card.spotify {
    border-left-color: var(--spotify-color);
}

.url-service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.url-service-header i {
    font-size: 2.2rem;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.url-service-card.facebook .url-service-header i {
    background-color: var(--facebook-color);
    color: white;
}

.url-service-card.instagram .url-service-header i {
    background-color: var(--instagram-color);
    color: white;
}

.url-service-card.tiktok .url-service-header i {
    background-color: var(--tiktok-color);
    color: white;
}

.url-service-card.youtube-audio .url-service-header i,
.url-service-card.youtube-video .url-service-header i {
    background-color: #FF0000;
    color: white;
}

.url-service-card.spotify .url-service-header i {
    background-color: var(--spotify-color);
    color: white;
}

.url-service-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.url-service-info h3 {
    margin: 0 0 6px 0;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.url-service-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Fixed URL Service Action Button - Better text handling */
.url-service-action {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
    height: 42px;
    min-width: 100px;
    max-width: 130px;
    overflow: hidden;
    box-sizing: border-box;
}

.url-service-action span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    flex: 1;
    min-width: 0;
    text-align: center;
}

.url-service-action i {
    flex-shrink: 0;
    font-size: 0.9rem;
}

.url-service-action:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.history-container {
    margin-top: 20px;
}

.history-item {
    background-color: var(--card-bg);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s;
}

.history-item:hover {
    transform: translateX(5px);
}

.clear-history-btn {
    background-color: #ff4444;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    display: block;
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s;
    line-height: 1.2;
}

.clear-history-btn:hover {
    background-color: #cc0000;
}

.download-queue {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background-color: var(--card-bg);
    padding: 15px;
    border-radius: 10px;
    max-width: 300px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

.queue-item {
    padding: 8px 0;
    border-bottom: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.queue-item:last-child {
    border-bottom: none;
}

.remove-from-queue {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    padding: 5px;
}

.premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: gold;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin: 10px 0;
    color: var(--primary-color);
}

.premium-btn {
    background: linear-gradient(135deg, #f5d742, #f5a742);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: block;
    margin: 30px auto 15px;
    transition: transform 0.3s;
    line-height: 1.2;
    width: 250px;
}

.premium-btn:hover {
    transform: scale(1.05);
}

/* Contact Us Button */
.contact-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: all 0.3s;
    width: 250px;
    text-decoration: none;
    text-align: center;
}

.contact-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.contact-btn i {
    margin-right: 10px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    width: 400px;
}

.quality-option {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1.2;
}

.quality-option:hover {
    background-color: #3e8e41;
}

@media (max-width: 768px) {
    .download-queue {
        bottom: 60px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .url-service-cards {
        gap: 12px;
    }
    
    .url-service-card {
        padding: 14px 16px;
        min-height: 80px;
    }
    
    .url-service-header {
        gap: 12px;
    }
    
    .url-service-header i {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .url-service-info h3 {
        font-size: 1rem;
    }
    
    .url-service-info p {
        font-size: 0.85rem;
    }
    
    .url-service-action {
        padding: 9px 10px;
        font-size: 0.9rem;
        height: 40px;
        min-width: 90px;
        max-width: 110px;
        gap: 4px;
    }
    
    .url-service-action span {
        font-size: 0.85rem;
    }
    
    .download-options {
        gap: 6px;
    }
    
    .download-btn {
        font-size: 0.8rem;
        padding: 8px 4px;
        min-width: 70px;
    }
    
    .download-btn span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
        padding-bottom: 80px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .search-input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .search-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
        min-width: 80px;
    }
    
    .platform-tab {
        padding: 10px 6px;
        font-size: 0.75rem;
        gap: 4px;
        min-width: 0;
    }
    
    .platform-tab i {
        font-size: 0.9rem;
    }
    
    .url-service-card {
        padding: 12px 14px;
        min-height: 75px;
    }
    
    .url-service-header i {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }
    
    .url-service-info h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .url-service-info p {
        font-size: 0.8rem;
    }
    
    .url-service-action {
        padding: 8px 8px;
        font-size: 0.8rem;
        height: 38px;
        gap: 3px;
        min-width: 85px;
        max-width: 100px;
    }
    
    .url-service-action span {
        font-size: 0.8rem;
        max-width: 55px;
    }
    
    .url-service-action i {
        font-size: 0.8rem;
    }
    
    .result-title {
        font-size: 0.9rem;
    }
    
    .download-btn {
        font-size: 0.75rem;
        padding: 8px 3px;
        min-width: 60px;
    }
    
    .download-btn span {
        font-size: 0.7rem;
    }
    
    .main-tab {
        font-size: 0.7rem;
        padding: 8px 10px;
    }
    
    .main-tab i {
        font-size: 1rem;
    }
    
    .premium-btn,
    .contact-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .section-title-container {
        gap: 10px;
    }
    
    .loader {
        width: 25px;
        height: 25px;
    }
    
    .skeleton-thumbnail {
        height: 140px;
    }
}

@media (max-width: 400px) {
    .url-service-action {
        min-width: 80px;
        max-width: 90px;
        padding: 7px 6px;
    }
    
    .url-service-action span {
        font-size: 0.75rem;
        max-width: 45px;
    }
    
    .url-service-action i {
        font-size: 0.75rem;
    }
    
    .download-btn {
        font-size: 0.7rem;
        padding: 7px 2px;
        min-width: 55px;
    }
    
    .download-btn span {
        font-size: 0.65rem;
    }
}

@media (max-width: 360px) {
    .platform-tab {
        font-size: 0.7rem;
        padding: 8px 4px;
        gap: 3px;
    }
    
    .platform-tab i {
        font-size: 0.8rem;
    }
    
    .url-service-card {
        padding: 10px 12px;
        min-height: 70px;
        flex-wrap: nowrap;
    }
    
    .url-service-header {
        gap: 10px;
        flex: 1;
        min-width: 0;
    }
    
    .url-service-header i {
        font-size: 1.6rem;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .url-service-info h3 {
        font-size: 0.9rem;
        margin-bottom: 3px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .url-service-info p {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Special handling for very small screens - hide text, show icon only */
    .url-service-action {
        padding: 6px;
        font-size: 0.75rem;
        height: 34px;
        gap: 2px;
        min-width: 70px;
        max-width: 80px;
    }
    
    .url-service-action span {
        font-size: 0.7rem;
        max-width: 40px;
    }
    
    .url-service-action i {
        font-size: 0.7rem;
    }
    
    .download-btn {
        font-size: 0.65rem;
        padding: 6px 2px;
        min-width: 50px;
    }
    
    .download-btn span {
        font-size: 0.6rem;
        max-width: 35px;
    }
    
    .download-btn i {
        font-size: 0.7rem;
    }
    
    .section-title-container {
        gap: 8px;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .loader {
        width: 22px;
        height: 22px;
        border-width: 3px;
    }
    
    .skeleton-thumbnail {
        height: 120px;
    }
}

/* Extra small screens - icon only mode */
@media (max-width: 320px) {
    .url-service-action span {
        display: none;
    }
    
    .url-service-action {
        min-width: 50px;
        max-width: 60px;
        padding: 8px;
    }
    
    .url-service-action i {
        font-size: 0.9rem;
        margin: 0;
    }
    
    .download-btn span {
        max-width: 30px;
    }
    
    .download-btn i {
        font-size: 0.8rem;
    }
}

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
