@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a1c29 0%, #2d2f42 100%);
}

.roller-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: linear-gradient(180deg, #4a9eff 0%, #2c7ae0 50%, #1e5fb8 100%);
    border: 2px solid #5ba8ff;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s ease;
    overflow: hidden;
    text-decoration: none;
    user-select: none;
    box-shadow: 0 4px 0 #1e5fb8, 0 6px 12px rgba(0, 0, 0, 0.3);
}

.roller-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.roller-button:hover:before {
    left: 100%;
}

.roller-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 0 #1e5fb8, 0 8px 16px rgba(0, 0, 0, 0.4);
}

.roller-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #1e5fb8, 0 3px 6px rgba(0, 0, 0, 0.3);
}

.roller-button.active {
    background: linear-gradient(180deg, #03e1e4 0%, #02c4c7 50%, #01a3a6 100%);
    border-color: #04f1f4;
    box-shadow: 0 4px 0 #01a3a6, 0 6px 12px rgba(0, 0, 0, 0.3);
}

.roller-button.active:hover {
    box-shadow: 0 5px 0 #01a3a6, 0 8px 16px rgba(0, 0, 0, 0.4);
}

.rollercoin-card {
    background: linear-gradient(145deg, #252841 0%, #1f2135 100%);
    border: 2px solid #3d4162;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.rollercoin-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(3, 225, 228, 0.5), transparent);
}

.rollercoin-input {
    background: linear-gradient(145deg, #1a1c29 0%, #151723 100%);
    border: 2px solid #2d2f42;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 16px;
    transition: all 0.2s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.rollercoin-input:focus {
    outline: none;
    border-color: #03e1e4;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(3, 225, 228, 0.2);
}

.rollercoin-select {
    background: linear-gradient(145deg, #1a1c29 0%, #151723 100%);
    border: 2px solid #2d2f42;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.rollercoin-select:focus {
    outline: none;
    border-color: #03e1e4;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(3, 225, 228, 0.2);
}

.rollercoin-select option {
    background: #252841;
    color: white;
    padding: 8px;
    border: none;
}

.rollercoin-select option:hover,
.rollercoin-select option:checked {
    background: #03e1e4;
    color: #1a1c29;
}

.league-badge {
    background: linear-gradient(145deg, #252841 0%, #1f2135 100%);
    border: 2px solid;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bronze {
    border-color: #cd7f32;
    color: #cd7f32;
}

.silver {
    border-color: #c0c0c0;
    color: #c0c0c0;
}

.gold {
    border-color: #ffd700;
    color: #ffd700;
}

.platinum {
    border-color: #e5e4e2;
    color: #e5e4e2;
}

.diamond {
    border-color: #03e1e4;
    color: #03e1e4;
}

.rollercoin-header {
    background: linear-gradient(135deg, #2d2f42 0%, #252841 100%);
    border-bottom: 3px solid #03e1e4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.rollercoin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.rollercoin-table th {
    background: linear-gradient(145deg, #2d2f42 0%, #252841 100%);
    border-bottom: 2px solid #3d4162;
    padding: 16px 12px;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    color: #03e1e4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rollercoin-table td {
    background: linear-gradient(145deg, #1f2135 0%, #1a1c29 100%);
    border-bottom: 1px solid #2d2f42;
    padding: 16px 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
}

.rollercoin-table tbody tr:hover td {
    background: linear-gradient(145deg, #252841 0%, #1f2135 100%);
}

.rollercoin-table tbody tr:last-child td {
    border-bottom: none;
}

.crypto-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.crypto-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.earnings-number {
    font-weight: 600;
    color: #03e1e4;
    min-width: 80px;
    text-align: right;
}

.error-message {
    background: linear-gradient(145deg, #4a1f1f 0%, #3d1818 100%);
    border: 2px solid #dc2626;
    border-radius: 8px;
    color: #fecaca;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 12px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.withdrawal-time {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
}

.withdrawal-time.short {
    color: #10b981;
}

.withdrawal-time.medium {
    color: #f59e0b;
}

.withdrawal-time.long {
    color: #ef4444;
}

.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 9999;
    top: 125%;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    pointer-events: none;
}

.tooltip img {
    max-width: 500px;
    max-height: 400px;
    border: 3px solid #03e1e4;
    border-radius: 8px;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.tooltip-container:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.tooltip-container.show .tooltip {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 768px) {

    .tooltip-container.show .tooltip,
    .tooltip-container:hover .tooltip {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 10000 !important;
    }

    .tooltip img {
        max-width: 85vw !important;
        max-height: 70vh !important;
        width: auto !important;
        height: auto !important;
    }
}

.help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: linear-gradient(145deg, #3d4162 0%, #2d2f42 100%);
    border: 2px solid #4a9eff;
    border-radius: 50%;
    color: #4a9eff;
    font-size: 12px;
    font-weight: 700;
    margin-left: 8px;
    cursor: help;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.help-icon:hover {
    border-color: #03e1e4;
    color: #03e1e4;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(3, 225, 228, 0.3);
}

.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1;
}

.rollercoin-footer {
    background: linear-gradient(135deg, #252841 0%, #1f2135 100%);
    border-top: 3px solid #03e1e4;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4);
}

.rollercoin-title {
    color: #03e1e4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 1px;
}

.rollercoin-label {
    color: #a0a3bd;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1c29;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(145deg, #4a9eff 0%, #03e1e4 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(145deg, #03e1e4 0%, #4a9eff 100%);
}

.no-data-message {
    background: linear-gradient(145deg, #252841 0%, #1f2135 100%);
    border: 2px solid #3d4162;
    border-radius: 12px;
    color: #a0a3bd;
    padding: 32px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.rollercoin-input[type="number"]::-webkit-outer-spin-button,
.rollercoin-input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.rollercoin-input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
    -webkit-appearance: none;
}

.footer-link {
    color: #03e1e4;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #4a9eff;
}

.secret-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 28, 41, 0.95));
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-out;
}

.secret-overlay.hidden {
    display: none;
}

.secret-modal {
    text-align: center;
    animation: scaleIn 0.6s ease-out;
}

.secret-gif-container {
    margin-bottom: 30px;
}

.secret-gif {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    border: 3px solid #03e1e4;
    box-shadow: 0 0 30px rgba(3, 225, 228, 0.5);
    animation: pulse 2s infinite;
}

.secret-text {
    color: #03e1e4;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(3, 225, 228, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
}

#countdown {
    display: inline-block;
    margin-left: 10px;
    font-size: 32px;
    color: #ffd700;
    text-shadow: 0 2px 15px rgba(255, 215, 0, 0.8);
    animation: countdownPulse 1s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 30px rgba(3, 225, 228, 0.5);
    }

    50% {
        box-shadow: 0 0 50px rgba(3, 225, 228, 0.8);
    }

    100% {
        box-shadow: 0 0 30px rgba(3, 225, 228, 0.5);
    }
}

@keyframes countdownPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.error-banner {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-left: 4px solid #991b1b;
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    animation: errorSlideIn 0.5s ease-out;
}

.error-banner svg {
    flex-shrink: 0;
}

.error-banner p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.error-banner strong {
    color: #fecaca;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

@keyframes errorSlideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

.user-league-display {
    background: linear-gradient(145deg, #1f2135 0%, #1a1c29 100%);
    border: 2px solid #2d2f42;
    border-radius: 12px;
    padding: 24px;
}

.league-header-display {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #3d4162;
}

.league-icon-large {
    width: 64px;
    height: 64px;
    border-radius: 8px;
}

.league-info-large {
    flex: 1;
}

.league-name-large {
    font-size: 24px;
    font-weight: 700;
    color: #03e1e4;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.league-subtitle {
    font-size: 14px;
    color: #a0a3bd;
    margin: 4px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;

}

.reward-card {
    background: linear-gradient(145deg, #252841 0%, #1f2135 100%);
    border: 2px solid #3d4162;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    position: relative;
}

.reward-card:hover {
    border-color: #03e1e4;
    box-shadow: 0 4px 12px rgba(3, 225, 228, 0.2);
}

.reward-coin-large {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.reward-info {
    flex: 1;
}

.reward-coin-name {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.reward-amount {
    font-size: 16px;
    font-weight: 600;
    color: #03e1e4;
    margin: 2px 0 0 0;
}

.network-toggle-group {
    display: flex;
    background: linear-gradient(145deg, #1f2135 0%, #1a1c29 100%);
    border: 2px solid #3d4162;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.network-toggle-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: transparent;
    border: none;
    color: #a0a3bd;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid #3d4162;
}

.network-toggle-btn:last-child {
    border-right: none;
}

.network-toggle-btn:hover {
    background: rgba(74, 154, 255, 0.1);
    color: #4a9eff;
}

.network-toggle-btn.active {
    background: linear-gradient(145deg, #4a9eff 0%, #2c7ae0 100%);
    color: white;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.currency-toggle-group {
    display: flex;
    background: linear-gradient(145deg, #1f2135 0%, #1a1c29 100%);
    border: 2px solid #3d4162;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.currency-toggle-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: transparent;
    border: none;
    color: #a0a3bd;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid #3d4162;
    min-width: 60px;
    flex: 1;
}

.currency-toggle-btn:last-child {
    border-right: none;
}

.currency-toggle-btn:hover {
    background: rgba(3, 225, 228, 0.1);
    color: #03e1e4;
}

.currency-toggle-btn.active {
    background: linear-gradient(145deg, #03e1e4 0%, #02c4c7 100%);
    color: #1a1c29;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.earnings-number.whale-warning {
    color: #ef4444 !important;
    font-weight: 700;
}

.block-time-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: linear-gradient(145deg, #1a1c29 0%, #151723 100%);
    border: 1px solid #4a9eff;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 600;
    color: #4a9eff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    min-width: 42px;
    text-align: center;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.clock-icon {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(49%) sepia(88%) saturate(2068%) hue-rotate(199deg) brightness(101%) contrast(101%);
    transition: filter 0.2s ease;
}

.network-link-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: linear-gradient(145deg, #1a1c29 0%, #151723 100%);
    border: 1px solid #4a9eff;
    border-radius: 4px;
    padding: 4px 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-link-badge:hover {
    border-color: #03e1e4;
    box-shadow: 0 2px 6px rgba(3, 225, 228, 0.3);
    transform: scale(1.05);
}

.link-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(49%) sepia(88%) saturate(2068%) hue-rotate(199deg) brightness(101%) contrast(101%);
    transition: filter 0.2s ease;
}

.network-link-badge:hover .link-icon {
    filter: brightness(0) saturate(100%) invert(68%) sepia(89%) saturate(2068%) hue-rotate(160deg) brightness(91%) contrast(101%);
}

.earnings-number.normal {
    color: white;
    font-weight: 600;
}

.mini-table {
    font-size: 13px;
}

.mini-table th {
    background: linear-gradient(145deg, #2d2f42 0%, #252841 100%);
    color: #03e1e4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 12px;
}

.mini-table td {
    background: linear-gradient(145deg, #1f2135 0%, #1a1c29 100%);
    border-bottom: 1px solid #2d2f42;
    padding: 8px 12px;
    font-weight: 500;
}

.mini-table tbody tr:hover td {
    background: linear-gradient(145deg, #252841 0%, #1f2135 100%);
}

.mini-table tbody tr:last-child td {
    border-bottom: none;
}

.price-value {
    color: #10b981;
    font-weight: 600;
}

.withdrawal-value {
    color: #03e1e4;
    font-weight: 600;
}

.coin-name-mini {
    display: flex;
    align-items: center;
    gap: 8px;
}

.coin-icon-mini {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.coming-soon-withdrawal {
    color: #fbbf24;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.table-fixed {
    table-layout: fixed;
}

.table-fixed td,
.table-fixed th {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.analyzer-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
}

@media (min-width: 768px) {
    .analyzer-buttons-container {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }
}

.new-analyzer-button {
    position: relative;
    background: linear-gradient(135deg, #1a1c29 0%, #2d2f42 100%);
    border: 2px solid #03e1e4;
    border-radius: 8px;
    padding: 12px 20px;
    color: #03e1e4;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
    text-decoration: none;
    min-width: 200px;
    text-align: center;
}

.new-analyzer-button:hover {
    transform: translateY(-1px);
    border-color: #4a9eff;
    color: #4a9eff;
}

.transition-button {
    position: relative;
    background: linear-gradient(135deg, #2d1f42 0%, #42295c 100%);
    border: 2px solid #9333ea;
    border-radius: 8px;
    padding: 12px 20px;
    color: #c084fc;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
    text-decoration: none;
    min-width: 200px;
    text-align: center;
}

.transition-button:hover {
    transform: translateY(-1px);
    border-color: #a855f7;
    color: #ddd6fe;
}

.new-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    border: 1px solid #f87171;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
    animation: bounce-subtle 2s infinite;
}

.pulsing-glow-new {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 10px;
    z-index: 1;
    animation: heartbeat-glow-purple 2s infinite;
    pointer-events: none;
}

@keyframes heartbeat-glow-purple {

    0%,
    100% {
        box-shadow: 0 0 4px rgba(147, 51, 234, 0.3), 0 0 6px rgba(147, 51, 234, 0.1);
    }

    50% {
        box-shadow: 0 0 8px rgba(147, 51, 234, 0.6), 0 0 12px rgba(147, 51, 234, 0.3);
    }
}

@keyframes bounce-subtle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

.pulsing-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 10px;
    z-index: 1;
    animation: heartbeat-glow 2s infinite;
    pointer-events: none;
}

@keyframes heartbeat-glow {

    0%,
    100% {
        box-shadow: 0 0 4px rgba(3, 225, 228, 0.3), 0 0 6px rgba(3, 225, 228, 0.1);
    }

    50% {
        box-shadow: 0 0 8px rgba(3, 225, 228, 0.6), 0 0 12px rgba(3, 225, 228, 0.3);
    }
}
