.diamond-button {
    /* Layout */
    display: inline-block;
    padding: 12px 24px;
    
    /* Typography */
    font-family: 'JetBrains Mono', monospace;
    /* font-weight: 700; */
    text-transform: lowercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    
    /* Colors & Borders */
    color: #64d1cb; /* Your Diamond Blue */
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 15px;
    
    /* Animation */
    transition: all 0.4s ease !important;
    cursor: pointer;
}

.diamond-button:hover {
    background-color: #64d1cb;
    color: #1a2a29; /* Your Dark Accent */
    box-shadow: 0 0 25px rgba(100, 209, 203, 0.5);
    transform: translateY(-2px);
}