/* Custom Button Styles for BlockDAG Network Design */

/* Primary Button Style */
.style_button__C9H72,
.interact-button,
button[type="submit"],
button[type="button"] {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    min-height: 48px;
}

.style_button__C9H72:hover,
.interact-button:hover,
button[type="submit"]:hover,
button[type="button"]:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.style_button__C9H72:active,
.interact-button:active,
button[type="submit"]:active,
button[type="button"]:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Secondary Button Style */
.style_button__C9H72.style_transparent-dark__hThHh,
.style_customlink___bLW0 {
    background: transparent;
    color: #3B82F6;
    border: 2px solid #3B82F6;
    box-shadow: none;
}

.style_button__C9H72.style_transparent-dark__hThHh:hover,
.style_customlink___bLW0:hover {
    background: #3B82F6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Dark Button Style */
.style_button__C9H72.style_dark__Ov6B6 {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(31, 41, 55, 0.3);
}

.style_button__C9H72.style_dark__Ov6B6:hover {
    background: linear-gradient(135deg, #374151 0%, #1F2937 100%);
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.4);
}

/* Special Button Styles */
.style_buyBtn__2Jmur,
.style_referralButton__iJjfi,
.style_keynoteLiveButton__S06s4,
.style_x1LaunchButton__ACjID {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    font-size: 16px;
    padding: 14px 28px;
    min-height: 52px;
}

.style_buyBtn__2Jmur:hover,
.style_referralButton__iJjfi:hover,
.style_keynoteLiveButton__S06s4:hover,
.style_x1LaunchButton__ACjID:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Button with wrap effect */
.style_wrap__yFGLp {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.style_button__C9H72:hover .style_wrap__yFGLp {
    transform: translateX(4px);
}

/* Focus states */
.style_button__C9H72:focus,
.interact-button:focus,
button[type="submit"]:focus,
button[type="button"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Disabled state */
.style_button__C9H72:disabled,
.interact-button:disabled,
button[type="submit"]:disabled,
button[type="button"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .style_button__C9H72,
    .interact-button,
    button[type="submit"],
    button[type="button"] {
        padding: 10px 20px;
        font-size: 13px;
        min-height: 44px;
    }
    
    .style_buyBtn__2Jmur,
    .style_referralButton__iJjfi,
    .style_keynoteLiveButton__S06s4,
    .style_x1LaunchButton__ACjID {
        padding: 12px 24px;
        font-size: 14px;
        min-height: 48px;
    }
}

/* Animation for button loading states */
@keyframes buttonPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.style_button__C9H72.loading,
.interact-button.loading {
    animation: buttonPulse 1.5s infinite;
}

/* Icon styles within buttons */
.style_button__C9H72 svg,
.interact-button svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.style_button__C9H72:hover svg,
.interact-button:hover svg {
    transform: translateX(2px);
} 