body.logged-in .hide-if-logged-in {
display: none !important;
} body:not(.logged-in) .show-only-if-logged-in {
display: none !important;
} .hide-if-logged-in .get-instant-access-btn {
background: linear-gradient(135deg, #d9534f 0%, #c9302c 100%);
color: #fff;
padding: 12px 30px;
border-radius: 8px;
font-weight: bold;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 4px 10px rgba(217, 83, 79, 0.3);
}
.hide-if-logged-in .get-instant-access-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(217, 83, 79, 0.4);
} .show-only-if-logged-in .my-account-btn {
background: #8B1538;
color: #fff;
padding: 12px 30px;
border-radius: 8px;
font-weight: bold;
text-decoration: none;
transition: all 0.3s ease;
}
.show-only-if-logged-in .my-account-btn:hover {
background: #6B1028;
} @media (max-width: 768px) {
.hide-if-logged-in .get-instant-access-btn,
.show-only-if-logged-in .my-account-btn {
display: block;
width: 100%;
text-align: center;
margin: 10px 0;
}
}  #footer-widgets {
display: none !important;
} #main-footer {
background: #0f0f0f !important;
padding-top: 30px !important;
} #footer-bottom {
background: #0f0f0f !important;
padding: 18px 0 !important;
border-top: 1px solid rgba(255,255,255,0.08);
} #footer-bottom .container {
display: flex;
flex-direction: column;
align-items: center;
gap: 14px;
} #footer-bottom .et-social-icons {
float: none !important;
padding: 0 !important;
margin: 0 !important;
}
#footer-bottom .et-social-icons li a {
opacity: 0.85;
transition: opacity 0.2s ease, transform 0.2s ease;
}
#footer-bottom .et-social-icons li a:hover {
opacity: 1;
transform: translateY(-2px);
} #footer-info {
float: none !important;
text-align: center !important;
color: rgba(255,255,255,0.65) !important;
font-size: 14px !important;
line-height: 1.4;
} #footer-info a {
color: rgba(255,255,255,0.75) !important;
text-decoration: none !important;
border-bottom: 1px solid rgba(255,255,255,0.15);
transition: color 0.2s ease, border-color 0.2s ease;
}
#footer-info a:hover {
color: #ffffff !important;
border-color: rgba(255,255,255,0.35);
}