.floating-substack-btn{
    position: fixed;
    bottom: 30px;
    right: 120px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
	background: linear-gradient(135deg, #000 0%, #222 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 999;  /* Lower value to appear below cookie banner */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.floating-reddit-btn {
    position: fixed;
    bottom: 30px;
    right: 210px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
	background: linear-gradient(135deg, #000 0%, #222 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 999;  /* Lower value to appear below cookie banner */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.floating-substack-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 103, 25, 0.6);
}

.floating-substack-btn img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.floating-reddit-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 103, 25, 0.6);
}

.floating-reddit-btn img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}


