.container-column {
  display: flex;
  column-gap: 1rem;
}

.normal-par {
  margin: 0 auto 1rem !important;
}

.normal-link {
  color: white;
}

.glow-icon {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5))
    drop-shadow(0 0 10px rgba(140, 0, 255, 0.3));
  transition: transform 0.3s;
}

.glow-icon:hover {
  transform: scale(1.1); /* Scale effect on hover */
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, .5))
    drop-shadow(0 0 15px rgba(140, 0, 255, 0.8));
}

.copy-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    z-index: 1000;
    animation: fadeInOut 2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.shine-button {
    display: block;
    background: linear-gradient(135deg, #6a67ce, #ff6b6b);
    color: white;
    position: relative;
    overflow: hidden;
    position: relative;
    padding: 12px 24px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 140px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

    .shine-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.7s ease;
    }

    .shine-button:hover::before {
        left: 100%;
    }