/* digital-store-components.css */
/* Component styles: Filters, Search, Products, Cards, etc. */

/* Search Container */
.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    animation: fadeInUp 0.8s ease;
    z-index: 200;
}

.search-bar {
    width: 100%;
    padding: 15px 50px 15px 20px;
    font-size: 16px;
    border: 2px solid rgba(123, 194, 187, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: inherit;
    transition: var(--transition-smooth);
    outline: none;
}

body.dark-mode .search-bar {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(123, 194, 187, 0.4);
}

.search-bar:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 4px rgba(123, 194, 187, 0.1);
    transform: translateY(-2px);
}

.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.search-button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(123, 194, 187, 0.4);
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 250;
}

body.dark-mode .search-results {
    background: var(--dark-teal);
}

.search-results.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.search-result-item {
    padding: 15px;
    border-bottom: 1px solid rgba(123, 194, 187, 0.1);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateX(-20px);
    animation: searchItemFade 0.3s ease forwards;
}

@keyframes searchItemFade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.search-result-item:hover {
    background: rgba(123, 194, 187, 0.1);
    padding-left: 25px;
}

.search-result-image {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.search-result-info {
    flex: 1;
}

.search-result-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.search-result-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Filters Section */
.filters-section {
    padding: 30px var(--mobile-padding);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(123, 194, 187, 0.2);
    border-bottom: 1px solid rgba(123, 194, 187, 0.2);
    position: sticky;
    top: var(--nav-height);
    z-index: 100;
    transition: all 0.3s ease;
}

body.dark-mode .filters-section {
    background: rgba(0, 0, 0, 0.8);
}

nav.scrolled ~ * .filters-section {
    top: var(--nav-height-scrolled);
}

.filters-section.compact {
    padding: 15px var(--mobile-padding);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.filters-section.compact .filter-group {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.filters-section.compact .filter-group::-webkit-scrollbar {
    display: none;
}

.filters-section.compact .price-range-container {
    display: none;
}

.filters-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-group {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    justify-content: center;
}

/* Sort Dropdown */
.sort-dropdown {
    position: relative;
    z-index: 150;
}

.sort-button {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(123, 194, 187, 0.3);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    white-space: nowrap;
}

body.dark-mode .sort-button {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-color: rgba(123, 194, 187, 0.4);
}

.sort-button:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(123, 194, 187, 0.3);
}

.sort-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.sort-dropdown.active .sort-arrow {
    transform: rotate(180deg);
}

.sort-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 220px;
    z-index: 200;
    overflow: hidden;
}

body.dark-mode .sort-menu {
    background: var(--dark-teal);
}

.sort-dropdown.active .sort-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.sort-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(123, 194, 187, 0.1);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.sort-item:hover {
    background: rgba(123, 194, 187, 0.1);
    padding-left: 30px;
}

.sort-item.active {
    color: var(--primary);
    font-weight: 600;
}

/* Category Dropdown */
.category-dropdown {
    position: relative;
    z-index: 150;
}

.category-button {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(123, 194, 187, 0.3);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    white-space: nowrap;
}

body.dark-mode .category-button {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-color: rgba(123, 194, 187, 0.4);
}

.category-button:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(123, 194, 187, 0.3);
}

.category-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.category-dropdown.active .category-arrow {
    transform: rotate(180deg);
}

.category-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 220px;
    z-index: 200;
    overflow: hidden;
    max-height: 400px;
    overflow-y: auto;
}

body.dark-mode .category-menu {
    background: var(--dark-teal);
}

.category-dropdown.active .category-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.category-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(123, 194, 187, 0.1);
    position: relative;
    overflow: hidden;
    font-size: 14px;
}

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

.category-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary);
    transform: translateX(-5px);
    transition: transform 0.3s ease;
}

.category-item:hover {
    background: rgba(123, 194, 187, 0.1);
    padding-left: 30px;
}

.category-item:hover::before {
    transform: translateX(0);
}

.category-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 1.1em;
}

/* Enhanced Price Range Component */
.price-range-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.price-range-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 30px;
    border: 2px solid rgba(123, 194, 187, 0.2);
}

body.dark-mode .price-range-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(123, 194, 187, 0.3);
}

.price-range-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
    white-space: nowrap;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-input-group {
    display: flex;
    align-items: center;
    background: rgba(123, 194, 187, 0.05);
    border-radius: 10px;
    padding: 5px 10px;
    border: 1px solid rgba(123, 194, 187, 0.2);
}

.currency-symbol {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-right: 5px;
}

.price-input {
    width: 70px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    outline: none;
    -moz-appearance: textfield;
}

body.dark-mode .price-input {
    color: var(--text-light);
}

.price-input::-webkit-outer-spin-button,
.price-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.price-separator {
    color: var(--primary);
    font-weight: 600;
}

.price-slider-container {
    position: relative;
    width: 200px;
}

.price-slider {
    width: 100%;
    height: 6px;
    background: rgba(123, 194, 187, 0.2);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.price-slider-track {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(123, 194, 187, 0.2);
    border-radius: 3px;
}

.price-slider-fill {
    position: absolute;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.price-slider-thumb {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(123, 194, 187, 0.4);
    cursor: grab;
    border: 2px solid white;
    transition: var(--transition-smooth);
}

.price-slider-thumb:active {
    cursor: grabbing;
    transform: translateY(-50%) scale(1.2);
}

/* Products Section */
.products-section {
    padding: 50px var(--desktop-padding);
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Product Card */
.product-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: productFadeIn 0.6s ease forwards;
}

@keyframes productFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }
.product-card:nth-child(9) { animation-delay: 0.45s; }
.product-card:nth-child(10) { animation-delay: 0.5s; }
.product-card:nth-child(11) { animation-delay: 0.55s; }
.product-card:nth-child(12) { animation-delay: 0.6s; }

body.dark-mode .product-card {
    background: rgba(255, 255, 255, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(123, 194, 187, 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-3);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    animation: badge-pulse 2s ease infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.favorite-button {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 3;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: none;
    outline: none;
}

body.dark-mode .favorite-button {
    background: rgba(255, 255, 255, 0.1);
}

.favorite-button:hover {
    transform: scale(1.1);
    background: var(--favorite);
    color: white;
}

.favorite-button.active {
    background: var(--favorite);
    color: white;
    animation: favorite-pop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes favorite-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

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

.product-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.file-type-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 80%;
}

.product-card:hover .file-type-icons {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.file-type-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    animation: iconBounce 0.6s ease;
}

body.dark-mode .file-type-icon {
    background: rgba(23, 76, 84, 0.95);
}

@keyframes iconBounce {
    0% { transform: scale(0) rotate(-180deg); }
    50% { transform: scale(1.2) rotate(10deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.file-type-icon:nth-child(1) { animation-delay: 0.05s; }
.file-type-icon:nth-child(2) { animation-delay: 0.1s; }
.file-type-icon:nth-child(3) { animation-delay: 0.15s; }
.file-type-icon:nth-child(4) { animation-delay: 0.2s; }

.product-card:hover .product-image {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.product-images-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.image-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.image-dot.active {
    background: white;
    width: 20px;
    border-radius: 3px;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-teal);
    line-height: 1.3;
}

body.dark-mode .product-title {
    color: var(--text-light);
}

.product-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-price.original {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 1rem;
    margin-right: 8px;
}

.add-to-cart {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.add-to-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(123, 194, 187, 0.4);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-btn {
    padding: 10px 20px;
    background: rgba(123, 194, 187, 0.1);
    border: 2px solid rgba(123, 194, 187, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
    color: var(--text-dark);
}

body.dark-mode .pagination-btn {
    color: var(--text-light);
}

.pagination-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: var(--primary);
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn:disabled:hover {
    transform: none;
    background: rgba(123, 194, 187, 0.1);
    color: var(--text-dark);
}

body.dark-mode .pagination-btn:disabled:hover {
    color: var(--text-light);
}

.page-info {
    padding: 0 20px;
    font-weight: 600;
    color: var(--primary);
}

/* Free Product Section */
.free-product-section {
    padding: 80px var(--desktop-padding);
    position: relative;
    overflow: hidden;
    background: transparent;
}

.free-product-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.free-product-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.free-product-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: block;
    position: relative;
}

.free-product-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-3);
    border-radius: 2px;
}

.free-timer {
    display: inline-flex;
    gap: 20px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(123, 194, 187, 0.2);
    margin: 0 auto;
}

body.dark-mode .free-timer {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(123, 194, 187, 0.3);
}

.timer-unit {
    text-align: center;
}

.timer-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.timer-label {
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

#freeProductDisplay {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

#freeProductDisplay .product-card {
    max-width: 350px;
    animation: none;
    opacity: 1;
    transform: none;
}

/* Random Products Section */
.random-products-section {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.random-products-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 var(--desktop-padding);
}

.random-products-title {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.products-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

.products-track {
    display: flex;
    gap: 25px;
    animation: scroll-products 40s linear infinite;
    width: fit-content;
}

@keyframes scroll-products {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.products-carousel:hover .products-track { 
    animation-play-state: paused; 
}

.carousel-product {
    min-width: 280px;
    flex-shrink: 0;
    cursor: pointer;
}

/* Telegram Promotion */
.telegram-promo { 
    padding: 60px var(--desktop-padding); 
    background: transparent;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.telegram-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-2);
    opacity: 0.1;
    border-radius: 40px;
    z-index: -1;
}

.telegram-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

body.dark-mode .telegram-content {
    background: rgba(255, 255, 255, 0.05);
}

.telegram-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: float-icon 3s ease infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.telegram-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.telegram-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.telegram-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(123, 194, 187, 0.4);
}