.domain-list {
    margin-top: 20px;
}

.domain-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96c93d);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.domain-card:hover .card-glow {
    opacity: 0.1;
}

.card-content {
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.domain-card:hover .card-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.domain-name {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #6c5ce7, #a55eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex-grow: 1;
    margin-right: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.domain-badge {
    background: linear-gradient(45deg, #00b894, #00cec9);
    color: white;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0, 184, 148, 0.2);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i {
    font-size: 1.2rem;
    color: #6c5ce7;
    background: rgba(108, 92, 231, 0.1);
    padding: 10px;
    border-radius: 12px;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-content label {
    font-size: 0.8rem;
    color: #636e72;
    margin-bottom: 2px;
}

.info-content span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3436;
}

.domain-tools {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.tool-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tool-button.wayback {
    background: linear-gradient(45deg, #fd79a8, #e84393);
}

.tool-button.whois {
    background: linear-gradient(45deg, #6c5ce7, #a55eea);
}

.tool-button.dapa {
    background: linear-gradient(45deg, #00b894, #00cec9);
}

.tool-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.tool-button i {
    font-size: 1.2rem;
}

.copy-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(45deg, #6c5ce7, #a55eea);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2);
}

.copy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

.copy-button:active {
    transform: scale(0.98);
}

.copy-button i {
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.copy-button:hover i {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(10deg);
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .domain-name {
        font-size: 1rem;
    }
    
    .domain-badge {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .tool-button {
        padding: 8px;
    }
    
    .tool-button i {
        font-size: 1rem;
    }
    
    .copy-button {
        padding: 10px;
    }
}

/* Hover Animasyonları */
.domain-card:hover .domain-name {
    color: #2d3436;
}

.tool-button:active {
    transform: scale(0.95);
}

.filter-section {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(165, 94, 234, 0.05) 100%);
    border-bottom: 1px solid rgba(108, 92, 231, 0.1);
    padding: 40px 0;
    margin-bottom: 30px;
}

.filter-section h1 {
    background: linear-gradient(45deg, #6c5ce7, #a55eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.filter-section .lead {
    color: #6c5ce7;
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.form-floating > .form-select,
.form-floating > .form-control {
    height: 3.5rem;
    border: 2px solid rgba(108, 92, 231, 0.1);
    transition: all 0.3s ease;
}

.form-floating > .form-select:focus,
.form-floating > .form-control:focus {
    border-color: #6c5ce7;
    box-shadow: 0 0 0 0.25rem rgba(108, 92, 231, 0.15);
}

.form-floating > label {
    color: #6c5ce7;
    opacity: 0.8;
}

.form-check-input {
    border-color: #6c5ce7;
    width: 2.5em;
    height: 1.25em;
}

.form-check-input:checked {
    background-color: #6c5ce7;
    border-color: #6c5ce7;
}

.form-check-label {
    color: #6c5ce7;
    font-weight: 500;
    margin-left: 10px;
}

.filter-button {
    background: linear-gradient(45deg, #6c5ce7, #a55eea);
    border: none;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 56px;
}

.filter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.filter-button i {
    margin-right: 8px;
}

.domain-count {
    background: linear-gradient(45deg, #6c5ce7, #a55eea);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(108, 92, 231, 0.2);
}

@media (max-width: 768px) {
    .filter-section {
        padding: 20px 0;
    }
    
    .filter-section h1 {
        font-size: 1.8rem;
    }
    
    .filter-section .lead {
        font-size: 1rem;
    }
    
    .form-floating {
        margin-bottom: 15px;
    }
    
    .filter-button {
        width: 100%;
        margin-top: 15px;
    }
}

.domain-info {
    color: #666;
    font-size: 0.9em;
}

.domain-card .card {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.domain-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
}

.pagination {
    margin: 20px 0;
}

.pagination .page-link {
    color: #2c3e50;
    border: 1px solid #dee2e6;
    margin: 0 2px;
    padding: 8px 16px;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #2c3e50;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

/* Footer stilleri */
.seo-card,
.footer,
.hover-white:hover,
.social-links,
.social-links a,
.social-links a:hover,
.footer hr,
.footer h5,
.footer h5::after {
    /* Bu stilleri kaldırıyoruz */
}

@media (max-width: 768px) {
    .seo-card {
        margin-top: 0;
    }
}

/* SEO Card stilleri */
.seo-card {
    background: #fff;
    margin-top: 30px;
    border-radius: 10px;
}

.seo-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.seo-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .seo-card {
        margin-top: 15px;
    }
}

/* Modern Card Tasarımı */
.card {
    background: #fff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.card:hover::after {
    opacity: 1;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 123, 255, 0.15);
}

.card-header {
    background: linear-gradient(45deg, #0062cc, #0096ff);
    padding: 1.25rem;
    border: none;
    position: relative;
}

.card-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
}

.domain-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-shadow: none;
}

.card-body {
    padding: 1.5rem;
}

.domain-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.domain-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.domain-info .info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    border-radius: 50%;
    margin-right: 0.75rem;
    color: #007bff;
}

.domain-tools {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1rem 0;
}

.btn-tool {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-tool:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-2px);
}

.btn-tool i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.btn-tool span {
    font-size: 0.8rem;
    font-weight: 500;
}

.copy-button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.copy-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1rem;
    }
    
    .domain-name {
        font-size: 1rem;
    }
    
    .domain-tools {
        gap: 0.5rem;
    }
    
    .btn-tool {
        padding: 0.5rem;
    }
    
    .btn-tool i {
        font-size: 1rem;
    }
    
    .btn-tool span {
        font-size: 0.7rem;
    }
}

/* Animasyonlar */
@keyframes cardPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.card:hover .domain-name {
    animation: none;
}

.time-card {
    background: rgba(108, 92, 231, 0.05);
    border-radius: 10px;
    padding: 8px 12px;
    margin: -10px 0 15px 0;
}

.time-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.time-info .date {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c5ce7;
}

.time-info .time-ago {
    font-size: 0.8rem;
    color: #a55eea;
    font-weight: 500;
    padding: 4px 8px;
    background: rgba(165, 94, 234, 0.1);
    border-radius: 6px;
}

@media (max-width: 768px) {
    .time-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .time-info .date,
    .time-info .time-ago {
        font-size: 0.8rem;
    }
}

/* Navbar Styles */
.custom-navbar {
    background: linear-gradient(45deg, #6c5ce7, #a55eea);
    height: 70px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 15px rgba(108, 92, 231, 0.15);
    position: relative;
    padding: 0.8rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    max-width: 250px;
    width: 100%;
    height: 70px;
}

.navbar-logo {
    width: auto;
    height: 40px;
    max-width: 100%;
    object-fit: contain;
    object-position: left;
    transition: transform 0.3s ease;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0 3px;
    height: 70px;
    display: flex;
    align-items: center;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(45deg, #6c5ce7, #a55eea);
        padding: 1rem;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-link {
        height: auto;
        padding: 12px;
        margin: 4px 0;
        justify-content: center;
        border-radius: 8px;
    }

    .nav-divider {
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
        margin: 8px 0;
    }
}

@media (max-width: 768px) {
    .custom-navbar {
        height: 65px;
    }

    .navbar-brand {
        max-width: 220px;
        height: 65px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .navbar-logo {
        height: 42px;
        object-position: center;
    }

    .navbar-toggler {
        position: absolute;
        left: 15px;
        padding: 4px 8px;
        border: none;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .custom-navbar {
        height: 60px;
    }

    .navbar-brand {
        max-width: 200px;
        height: 60px;
    }
    
    .navbar-logo {
        height: 38px;
    }
}

/* Footer Styles */
.custom-footer {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(165, 94, 234, 0.05) 100%);
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(108, 92, 231, 0.1);
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand i {
    font-size: 2rem;
    background: linear-gradient(45deg, #6c5ce7, #a55eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand span {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(45deg, #6c5ce7, #a55eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: #6c5ce7;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.footer-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-item i {
    font-size: 1.2rem;
    color: #6c5ce7;
    background: rgba(108, 92, 231, 0.1);
    padding: 10px;
    border-radius: 12px;
}

.stat-item span {
    font-weight: 600;
    color: #6c5ce7;
}

.footer-copyright {
    text-align: center;
    color: #6c5ce7;
    opacity: 0.6;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }
    
    .navbar-toggler {
        display: block;
    }
    
    .footer-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .custom-footer {
        padding: 40px 0 20px;
    }
    
    .footer-brand {
        margin-bottom: 15px;
    }
    
    .footer-brand i,
    .footer-brand span {
        font-size: 1.4rem;
    }
}

/* Contact Page Styles */
.contact-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.1);
}

.contact-card h1 {
    background: linear-gradient(45deg, #6c5ce7, #a55eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.contact-button {
    background: linear-gradient(45deg, #6c5ce7, #a55eea);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
    color: white;
}

.contact-info .info-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(108, 92, 231, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-info .info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.1);
}

.contact-info .info-item i {
    font-size: 2rem;
    color: #6c5ce7;
    margin-bottom: 1rem;
}

.contact-info .info-item h5 {
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.contact-info .info-item p {
    color: #6c5ce7;
    margin: 0;
}

/* About Page Styles */
.about-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.1);
}

.about-card h1 {
    background: linear-gradient(45deg, #6c5ce7, #a55eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.feature-item {
    padding: 2rem;
    background: rgba(108, 92, 231, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.1);
}

.feature-item i {
    font-size: 2rem;
    color: #6c5ce7;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #2d3436;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #636e72;
    margin: 0;
}

.stats-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(108, 92, 231, 0.1);
}

.stats-section .stat-item {
    text-align: center;
}

.stats-section .stat-item i {
    font-size: 2.5rem;
    color: #6c5ce7;
    margin-bottom: 1rem;
}

.stats-section .stat-item h3 {
    font-size: 2rem;
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.stats-section .stat-item p {
    color: #636e72;
    margin: 0;
}

/* Navigation Divider */
.nav-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 15px;
}

@media (max-width: 768px) {
    .nav-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }
    
    .contact-info .info-item,
    .feature-item {
        padding: 1.5rem;
    }
    
    .stats-section .stat-item {
        margin-bottom: 2rem;
    }
    
    .stats-section .stat-item:last-child {
        margin-bottom: 0;
    }
}

/* Search Form Styles */
.search-form {
    width: 100%;
}

.search-wrapper {
    position: relative;
    width: 100%;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.1);
    transition: all 0.3s ease;
}

.search-wrapper:hover {
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.15);
    transform: translateY(-2px);
}

.search-input {
    width: 100%;
    padding: 18px 30px;
    padding-right: 80px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    color: #2d3436;
    transition: all 0.3s ease;
    background: transparent;
}

.search-input:focus {
    outline: none;
    border-color: rgba(108, 92, 231, 0.3);
}

.search-button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(45deg, #6c5ce7, #a55eea);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(108, 92, 231, 0.2);
}

.search-button:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .search-input {
        padding: 15px 25px;
        padding-right: 70px;
        font-size: 0.9rem;
    }
    
    .search-button {
        width: 45px;
        font-size: 1rem;
    }
}

/* Welcome Popup Styles */
.welcome-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(108, 92, 231, 0.2);
    z-index: 1000;
    max-width: 400px;
    width: 90%;
    animation: popupSlideIn 0.4s ease;
}

.welcome-popup-content {
    text-align: center;
}

.welcome-popup-icon {
    font-size: 3rem;
    color: #0088cc;
    margin-bottom: 20px;
    animation: iconPulse 2s infinite;
}

.welcome-popup h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #6c5ce7, #a55eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-popup p {
    color: #636e72;
    margin-bottom: 25px;
    line-height: 1.6;
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #0088cc, #00a2ff);
    color: white;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.telegram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
    color: white;
}

.telegram-button i {
    font-size: 1.2rem;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #636e72;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.popup-close:hover {
    color: #2d3436;
    transform: rotate(90deg);
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

@keyframes popupSlideIn {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}