/* Success Show Page Styles */

/* Ensure body has black background */
body {
    background-color: #000000 !important;
    color: #ffffff;
}

/* Section background styling - replicating the screenshot */
.bg-card-bg {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(77, 208, 225, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Icon styling with wee-light variable */
.section-icon {
    background: linear-gradient(135deg, rgba(77, 208, 225, 0.2) 0%, rgba(77, 208, 225, 0.1) 100%);
    border: 1px solid rgba(77, 208, 225, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 16px rgba(77, 208, 225, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-icon i {
    color: var(--wee-light);
    text-shadow: 0 0 10px rgba(77, 208, 225, 0.5);
}

/* Hero button styles */
.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--accent-blue) 100%);
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(34, 155, 182, 0.3);
}

.btn-hero:hover {
    background: linear-gradient(135deg, var(--blue-dark-hover) 0%, var(--accent-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 155, 182, 0.4);
    color: white;
    text-decoration: none;
}

.btn-hero:active {
    transform: translateY(0);
}

/* Bullet list styles */
.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-blue);
    border-radius: 50%;
}

.bullet-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 20px;
    width: 1px;
    height: 16px;
    background-color: rgba(77, 208, 225, 0.3);
}

/* Card background */
.bg-card-bg {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

/* Ensure proper text colors */
.text-accent-blue {
    color: var(--accent-blue);
}

/* Technology logos hover effects */
.technology-logo {
    transition: all 0.3s ease;
}

.technology-logo:hover {
    transform: scale(1.1);
    filter: grayscale(0);
}

/* Hover utility classes */
.hover-white:hover {
    color: var(--hover-white) !important;
}

.hover-opacity:hover {
    opacity: var(--hover-opacity) !important;
}

.hover-brand:hover {
    color: var(--hover-brand) !important;
}

.hover-brand-bg:hover {
    background-color: var(--hover-brand) !important;
}

.hover-brand-border:hover {
    border-color: var(--hover-brand) !important;
}

.hover-brand-shadow:hover {
    box-shadow: 0 0 20px rgba(77, 208, 225, 0.4) !important;
}

/* Additional hover utilities */
.hover-scale:hover {
    transform: scale(1.05) !important;
}

.hover-lift:hover {
    transform: translateY(-2px) !important;
}

.hover-glow:hover {
    filter: drop-shadow(0 0 8px var(--hover-brand)) !important;
}

.hover-smooth {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
