.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    text-align: center;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-text {
    position: relative;
    z-index: 2;
}

/* Primary Button with Advanced Effects */
.btn--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.05rem;
    border: 1px solid rgba(124, 58, 237, 0.3);
    box-shadow: 
        0 8px 24px rgba(124, 58, 237, 0.25), 
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s;
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        var(--glow-primary-strong), 
        0 12px 32px rgba(124, 58, 237, 0.4);
    border-color: rgba(167, 139, 250, 0.5);
}

.btn--primary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Particles Effect for Primary Button */
.btn--hover-effect .btn-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.btn--primary:hover .btn-particles::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: particleBurst 0.6s ease-out;
}

@keyframes particleBurst {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Secondary Button */
.btn--secondary {
    background: rgba(20, 20, 45, 0.6);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.05rem;
    border: 1px solid var(--color-dark-border-hover);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    position: relative;
}

.btn--secondary .btn-shimmer {
    position: absolute;
    inset: -1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(124, 58, 237, 0.3) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.btn--secondary:hover .btn-shimmer {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.btn--secondary:hover {
    border-color: var(--color-primary);
    background: rgba(124, 58, 237, 0.15);
    box-shadow: 
        0 8px 24px rgba(124, 58, 237, 0.2), 
        inset 0 0 20px rgba(124, 58, 237, 0.1);
    transform: translateY(-2px);
}

/* Discord Button */
.btn--discord {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
}

.btn--discord .btn-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(124, 58, 237, 0.5),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn--discord:hover .btn-glow {
    opacity: 1;
}

.btn--discord:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: var(--glow-primary-strong), 0 6px 20px rgba(124, 58, 237, 0.4);
}

/* Button Arrow */
.btn-arrow {
    display: inline-block;
    transition: transform 0.3s var(--animation-easing-bounce);
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
    animation: arrowBounce 0.6s ease-in-out;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(5px); }
    50% { transform: translateX(10px); }
}

/* ========== FEATURE CARDS ========== */

.securanet-features {
    padding: 5rem 0;
    position: relative;
}

.securanet-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.securanet-feature-card {
    background: linear-gradient(
        135deg,
        rgba(26, 21, 48, 0.85) 0%,
        rgba(20, 16, 40, 0.85) 100%
    );
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s var(--animation-easing) backwards;
    cursor: pointer;
}

/* Stagger Animation */
.securanet-feature-card:nth-child(1) { animation-delay: 0.1s; }
.securanet-feature-card:nth-child(2) { animation-delay: 0.2s; }
.securanet-feature-card:nth-child(3) { animation-delay: 0.3s; }

/* Card Glow Effect - Subtler */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(124, 58, 237, 0.08) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease-out;
    pointer-events: none;
}

.securanet-feature-card:hover .card-glow {
    opacity: 1;
}

/* Top Border Animation - Simplified */
.securanet-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 58, 237, 0.6) 50%,
        transparent
    );
    transform: scaleX(0);
    transition: transform 0.4s ease-out;
}

.securanet-feature-card:hover::before {
    transform: scaleX(1);
}

/* Removed rotating border - too intense */
.securanet-feature-card::after {
    display: none;
}

/* Smoother Hover Effect */
.securanet-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 
        0 0 20px rgba(124, 58, 237, 0.3),
        0 12px 24px rgba(0, 0, 0, 0.6);
}

/* Card Corners - More Subtle */
.card-corner {
    position: absolute;
    width: 15px;
    height: 15px;
    opacity: 0;
    transition: all 0.3s ease-out;
}

.card-corner.top-left {
    top: -1px;
    left: -1px;
    border-top: 2px solid rgba(124, 58, 237, 0.5);
    border-left: 2px solid rgba(124, 58, 237, 0.5);
}

.card-corner.top-right {
    top: -1px;
    right: -1px;
    border-top: 2px solid rgba(124, 58, 237, 0.5);
    border-right: 2px solid rgba(124, 58, 237, 0.5);
}

.card-corner.bottom-left {
    bottom: -1px;
    left: -1px;
    border-bottom: 2px solid rgba(124, 58, 237, 0.5);
    border-left: 2px solid rgba(124, 58, 237, 0.5);
}

.card-corner.bottom-right {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid rgba(124, 58, 237, 0.5);
    border-right: 2px solid rgba(124, 58, 237, 0.5);
}

.securanet-feature-card:hover .card-corner {
    opacity: 1;
    width: 25px;
    height: 25px;
}

/* Icon Container */
.securanet-feature-card__icon {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.securanet-feature-card__icon svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.5));
    transition: all 0.3s ease-out;
}

.securanet-feature-card:hover .securanet-feature-card__icon svg {
    transform: scale(1.1) translateY(-4px);
    filter: drop-shadow(0 8px 20px rgba(124, 58, 237, 0.7));
}

/* Icon Orbit Effect - Subtler */
.icon-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 1px dashed rgba(124, 58, 237, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.securanet-feature-card:hover .icon-orbit {
    opacity: 1;
}

/* Card Title */
.securanet-feature-card__title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
    transition: all 0.3s ease-out;
}

.securanet-feature-card:hover .securanet-feature-card__title {
    color: var(--color-primary-light);
}

/* Card Text */
.securanet-feature-card__text {
    color: var(--color-dark-text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease-out;
}

.securanet-feature-card:hover .securanet-feature-card__text {
    color: var(--color-dark-text);
}

/* ========== ROADMAP ========== */

.securanet-roadmap {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.securanet-roadmap__timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
}

/* Horizontal Timeline Line */
.timeline-line-horizontal {
    position: absolute;
    top: 3rem;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(124, 58, 237, 0.8) 0%,
        rgba(124, 58, 237, 0.6) 50%,
        rgba(124, 58, 237, 0.3) 100%
    );
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
    z-index: 0;
}

.timeline-line-horizontal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 50%;
    height: 6px;
    background: linear-gradient(
        90deg,
        rgba(124, 58, 237, 0.8),
        transparent
    );
    filter: blur(4px);
    animation: timelineFlowHorizontal 3s ease-in-out infinite;
}

@keyframes timelineFlowHorizontal {
    0% { left: 0; opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.securanet-roadmap__item {
    background: linear-gradient(
        135deg,
        rgba(26, 21, 48, 0.75) 0%,
        rgba(20, 16, 40, 0.75) 100%
    );
    backdrop-filter: blur(15px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 1rem;
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    transition: all 0.4s var(--animation-easing);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.6s var(--animation-easing) backwards;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.securanet-roadmap__item:nth-child(2) { animation-delay: 0.1s; }
.securanet-roadmap__item:nth-child(3) { animation-delay: 0.2s; }
.securanet-roadmap__item:nth-child(4) { animation-delay: 0.3s; }
.securanet-roadmap__item:nth-child(5) { animation-delay: 0.4s; }

.securanet-roadmap__item:hover {
    transform: translateY(-8px);
    border-color: var(--color-dark-border-hover);
    box-shadow: var(--glow-primary), 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* Roadmap Icon */
.securanet-roadmap__icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        rgba(26, 21, 48, 0.95) 0%,
        rgba(20, 16, 40, 0.95) 100%
    );
    border: 2px solid var(--color-dark-border-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 20px rgba(124, 58, 237, 0.4),
        inset 0 0 20px rgba(124, 58, 237, 0.1);
    transition: all 0.4s;
    z-index: 2;
}

.securanet-roadmap__item:hover .securanet-roadmap__icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 
        0 0 30px rgba(124, 58, 237, 0.6),
        inset 0 0 30px rgba(124, 58, 237, 0.2);
}

.icon-pulse {
    position: absolute;
    inset: -5px;
    border: 2px solid rgba(124, 58, 237, 0.6);
    border-radius: 50%;
    animation: pulsate 2s ease-out infinite;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Roadmap Content */
.securanet-roadmap__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    transition: color 0.3s;
}

.securanet-roadmap__item:hover .securanet-roadmap__title {
    color: var(--color-primary-light);
}

.securanet-roadmap__status {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(26, 21, 48, 0.8);
    border: 1px solid var(--color-dark-border-hover);
    border-radius: var(--radius-full);
    color: var(--color-primary-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.securanet-roadmap__status--progress {
    background: linear-gradient(
        135deg,
        rgba(16, 185, 129, 0.15) 0%,
        rgba(124, 58, 237, 0.15) 100%
    );
    border-color: rgba(16, 185, 129, 0.4);
    color: var(--color-success);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .securanet-roadmap__timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .timeline-line-horizontal {
        display: none;
    }
}

@media (max-width: 640px) {
    .securanet-roadmap__timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ========== MEMBER ACCESS ========== */

.securanet-member-access {
    padding: 5rem 0;
    position: relative;
}

.securanet-member-box {
    max-width: 750px;
    margin: 0 auto;
    background: linear-gradient(
        135deg,
        rgba(26, 21, 48, 0.85) 0%,
        rgba(20, 16, 40, 0.85) 100%
    );
    backdrop-filter: blur(25px) saturate(160%);
    -webkit-backdrop-filter: blur(25px) saturate(160%);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    animation: fadeInScale 0.8s var(--animation-easing);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Security Grid Background */
.security-grid {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.grid-line {
    position: absolute;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 58, 237, 0.6),
        transparent
    );
}

.grid-line.horizontal {
    left: 0;
    right: 0;
    height: 1px;
    animation: scanHorizontal 4s ease-in-out infinite;
}

.grid-line.vertical {
    top: 0;
    bottom: 0;
    width: 1px;
    animation: scanVertical 4s ease-in-out infinite;
}

@keyframes scanHorizontal {
    0%, 100% { transform: translateX(0); opacity: 0; }
    50% { transform: translateX(100%); opacity: 1; }
}

@keyframes scanVertical {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(100%); opacity: 1; }
}

/* Vertical Scan Line */
.securanet-member-box::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 58, 237, 0.8),
        rgba(167, 139, 250, 1),
        rgba(124, 58, 237, 0.8),
        transparent
    );
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.8);
    animation: verticalScan 5s linear infinite;
}

@keyframes verticalScan {
    0% { top: -100%; }
    100% { top: 200%; }
}

/* Bottom Glow Line */
.securanet-member-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 58, 237, 0.8) 50%,
        transparent
    );
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.securanet-member-box__icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s var(--animation-easing) 0.1s backwards;
}

.securanet-member-box__icon svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 20px rgba(124, 58, 237, 0.5));
    animation: lockPulse 4s ease-in-out infinite;
}

@keyframes lockPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 4px 20px rgba(124, 58, 237, 0.5));
    }
    50% { 
        transform: scale(1.08);
        filter: drop-shadow(0 8px 40px rgba(124, 58, 237, 0.9));
    }
}

.securanet-member-box__text {
    font-size: 1.5rem;
    color: var(--color-dark-text);
    margin-bottom: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s var(--animation-easing) 0.2s backwards;
}

/* Typing Effect */
.typing-text {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid var(--color-primary);
    white-space: nowrap;
    animation: typing 3s steps(40) 1s both, blink 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.securanet-member-box .btn--primary {
    animation: fadeInUp 0.8s var(--animation-easing) 0.3s backwards;
}

/* ========== FOOTER ========== */

.securanet-footer {
    background: linear-gradient(
        180deg,
        rgba(15, 10, 31, 0) 0%,
        rgba(15, 10, 31, 0.95) 30%,
        rgba(13, 8, 26, 0.98) 100%
    );
    border-top: 1px solid rgba(124, 58, 237, 0.15);
    padding: 4rem 0 2rem;
    margin-top: 8rem;
    position: relative;
}

.securanet-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 58, 237, 0.4) 50%,
        transparent
    );
}

.securanet-footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.securanet-footer__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.3px;
}

.securanet-footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.securanet-footer__list a {
    color: #4f46e5;
    font-size: 0.9375rem;
    transition: all 0.3s var(--animation-easing);
    display: inline-block;
    text-decoration: none;
    position: relative;
}

.securanet-footer__list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary-light);
    transition: width 0.3s var(--animation-easing);
}

.securanet-footer__list a:hover {
    color: var(--color-primary-light);
    transform: translateX(4px);
}

.securanet-footer__list a:hover::after {
    width: 100%;
}

/* Social Icons - Enhanced Interactivity */
.securanet-footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.securanet-social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 30, 60, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 0.5rem;
    color: #6366f1;
    transition: all 0.4s var(--animation-easing-elastic);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Ripple Effect */
.icon-ripple {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle,
        rgba(124, 58, 237, 0.4) 0%,
        transparent 70%
    );
    transform: scale(0);
    opacity: 0;
    transition: all 0.6s ease-out;
    pointer-events: none;
}

.securanet-social-icon:hover .icon-ripple {
    transform: scale(2.5);
    opacity: 1;
}

/* Hover State */
.securanet-social-icon:hover {
    background: rgba(124, 58, 237, 0.25);
    border-color: rgba(124, 58, 237, 0.6);
    color: var(--color-primary-light);
    transform: translateY(-6px) scale(1.1);
    box-shadow: 
        0 0 20px rgba(124, 58, 237, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Active/Click State */
.securanet-social-icon:active {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 15px rgba(124, 58, 237, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.securanet-social-icon svg {
    transition: all 0.4s var(--animation-easing-elastic);
    position: relative;
    z-index: 1;
}

.securanet-social-icon:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.securanet-social-icon:hover:nth-child(1) {
    border-color: rgba(66, 103, 178, 0.6);
}

.securanet-social-icon:hover:nth-child(1) svg {
    color: #4267B2;
}

.securanet-social-icon:hover:nth-child(2) {
    border-color: rgba(29, 161, 242, 0.6);
}

.securanet-social-icon:hover:nth-child(2) svg {
    color: #1DA1F2;
}

.securanet-social-icon:hover:nth-child(3) {
    border-color: rgba(225, 48, 108, 0.6);
}

.securanet-social-icon:hover:nth-child(3) svg {
    color: #E1306C;
}


@keyframes iconGlowPulse {
    0%, 100% {
        box-shadow: 
            0 0 15px rgba(124, 58, 237, 0.3),
            0 8px 16px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 
            0 0 25px rgba(124, 58, 237, 0.5),
            0 8px 16px rgba(0, 0, 0, 0.4);
    }
}

.securanet-social-icon:hover {
    animation: iconGlowPulse 2s ease-in-out infinite;
}


@keyframes clickWave {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.securanet-social-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid rgba(124, 58, 237, 0.6);
    border-radius: 0.5rem;
    opacity: 0;
    pointer-events: none;
}

.securanet-social-icon:active::before {
    animation: clickWave 0.6s ease-out;
}

.securanet-footer__bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-dark-border);
    color: var(--color-dark-text-muted);
    font-size: 0.9rem;
}


@media (max-width: 768px) {
    .securanet-footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .securanet-footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .securanet-social-icon {
        width: 44px;
        height: 44px;
    }
}


@media (max-width: 768px) {
    .securanet-features__grid {
        grid-template-columns: 1fr;
    }
    
    .securanet-roadmap__item {
        margin-left: 3rem;
        padding: 2rem 2rem 2rem 3rem;
    }
    
    .securanet-roadmap__icon {
        left: -3rem;
        width: 50px;
        height: 50px;
    }
    
    .securanet-member-box {
        padding: 3rem 2rem;
    }
}

/* ========== ROADMAP BOLD COMPONENTS ========== */

/* Roadmap Container */
.roadmap-bold {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Timeline Center Line */
.roadmap-bold::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(
        180deg,
        rgba(124, 58, 237, 0.3),
        rgba(124, 58, 237, 0.8),
        rgba(124, 58, 237, 0.3)
    );
    transform: translateX(-50%);
    z-index: 0;
}

/* Timeline Item */
.timeline-bold-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left Items */
.timeline-bold-item.left {
    justify-content: flex-start;
}

.timeline-bold-item.left .bold-card {
    margin-right: auto;
    margin-left: 0;
}

.timeline-bold-item.left .bold-icon-wrapper {
    right: auto;
    left: 50%;
}

/* Right Items */
.timeline-bold-item.right {
    justify-content: flex-end;
}

.timeline-bold-item.right .bold-card {
    margin-left: auto;
    margin-right: 0;
}

.timeline-bold-item.right .bold-icon-wrapper {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

/* Bold Card */
.bold-card {
    width: calc(50% - 80px);
    max-width: 500px;
    background: linear-gradient(135deg, rgba(20, 20, 45, 0.95), rgba(30, 30, 60, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(124, 58, 237, 0.4);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Gradient top border effect */
.bold-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #7c3aed, #06b6d4);
    opacity: 0;
    transition: opacity 0.4s;
}

.timeline-bold-item:hover .bold-card::before {
    opacity: 1;
}

/* Card Hover Effect */
.timeline-bold-item:hover .bold-card {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(124, 58, 237, 0.8);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(124, 58, 237, 0.5);
}

/* Completed State */
.timeline-bold-item.completed .bold-card {
    border-color: rgba(16, 185, 129, 0.5);
}

.timeline-bold-item.completed:hover .bold-card {
    border-color: rgba(16, 185, 129, 0.8);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(16, 185, 129, 0.5);
}

.timeline-bold-item.completed .bold-card::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

/* Active State with Pulse */
.timeline-bold-item.active .bold-card {
    border-color: rgba(124, 58, 237, 0.8);
    animation: cardPulse 3s ease-in-out infinite;
}

/* Large Center Icon */
.bold-icon-wrapper {
    position: absolute;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(20, 20, 45, 1), rgba(30, 30, 60, 1));
    border: 4px solid rgba(124, 58, 237, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.5s;
}

.timeline-bold-item:hover .bold-icon-wrapper {
    border-color: rgba(124, 58, 237, 1);
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.8);
}

.timeline-bold-item.left:hover .bold-icon-wrapper {
    transform: translateX(-50%) scale(1.15) rotate(10deg);
}

.timeline-bold-item.right:hover .bold-icon-wrapper {
    transform: translateX(50%) scale(1.15) rotate(10deg);
}

.bold-icon-wrapper svg {
    width: 56px;
    height: 56px;
    color: #7c3aed;
}

/* Completed Icon */
.timeline-bold-item.completed .bold-icon-wrapper {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #10b981;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
}

.timeline-bold-item.completed .bold-icon-wrapper svg {
    color: white;
}

/* Active Icon */
.timeline-bold-item.active .bold-icon-wrapper {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    border-color: #a78bfa;
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.8);
}

.timeline-bold-item.active .bold-icon-wrapper svg {
    color: white;
}

/* Card Header */
.bold-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

/* Large Number */
.bold-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.timeline-bold-item.completed .bold-number {
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Status Badge */
.bold-status {
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-bold-item.completed .bold-status {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.5);
}

.timeline-bold-item.active .bold-status {
    background: rgba(124, 58, 237, 0.2);
    color: #a78bfa;
    border: 1px solid rgba(124, 58, 237, 0.5);
}

.timeline-bold-item:not(.completed):not(.active) .bold-status {
    background: rgba(107, 114, 128, 0.2);
    color: #9ca3af;
    border: 1px solid rgba(107, 114, 128, 0.5);
}

/* Title */
.bold-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

/* Quarter Info */
.bold-quarter {
    font-size: 0.95rem;
    color: #7c3aed;
    font-weight: 600;
    margin-bottom: 16px;
}

.timeline-bold-item.completed .bold-quarter {
    color: #10b981;
}

/* Description */
.bold-description {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Feature Tags */
.bold-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #a78bfa;
    transition: all 0.3s;
}

.feature-tag:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.5);
}

@media (max-width: 1024px) {
    /* Stack roadmap items on smaller screens */
    .roadmap-bold::before {
        left: 30px;
    }
    
    .timeline-bold-item.left,
    .timeline-bold-item.right {
        justify-content: flex-start;
        flex-direction: row;
        padding-left: 100px;
    }
    
    .timeline-bold-item.left .bold-card,
    .timeline-bold-item.right .bold-card {
        width: 100%;
        max-width: none;
        margin: 0;
    }
    
    .timeline-bold-item.left .bold-icon-wrapper,
    .timeline-bold-item.right .bold-icon-wrapper {
        left: 30px;
        right: auto;
        transform: translateX(-50%);
    }
    
    .timeline-bold-item.left:hover .bold-icon-wrapper,
    .timeline-bold-item.right:hover .bold-icon-wrapper {
        transform: translateX(-50%) scale(1.15) rotate(10deg);
    }
}

@media (max-width: 768px) {
    .bold-title {
        font-size: 1.5rem;
    }
    
    .bold-number {
        font-size: 2rem;
    }
    
    .timeline-bold-item.left,
    .timeline-bold-item.right {
        padding-left: 80px;
    }
    
    .bold-card {
        padding: 30px;
    }
    
    .bold-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .bold-icon-wrapper svg {
        width: 40px;
        height: 40px;
    }
}



.navbar-user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.navbar-user-info:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.5);
}

.navbar-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(6, 182, 212, 0.3));
    border: 2px solid rgba(124, 58, 237, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    overflow: hidden;
    flex-shrink: 0;
}

.navbar-user-avatar svg {
    width: 18px;
    height: 18px;
}

.navbar-user-name {
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn--dashboard {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: 1px solid rgba(124, 58, 237, 0.5);
    border-radius: 8px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn--dashboard:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.btn--dashboard svg {
    width: 16px;
    height: 16px;
}

.btn--logout-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--logout-mini:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn--logout-mini svg {
    width: 16px;
    height: 16px;
}

/* Responsive Anpassungen */
@media (max-width: 1024px) {
    .navbar-user-info {
        gap: 0.5rem;
        padding: 0.4rem 0.75rem;
    }

    .navbar-user-name {
        max-width: 80px;
        font-size: 0.85rem;
    }

    .btn--dashboard span {
        display: none;
    }

    .btn--dashboard {
        width: 36px;
        height: 36px;
        padding: 0;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar-user-name {
        display: none;
    }

    .navbar-user-info {
        gap: 0.5rem;
        padding: 0.4rem;
        background: transparent;
        border: none;
    }

    .navbar-user-avatar {
        width: 36px;
        height: 36px;
    }
}

/* Animation für User Info Einblenden */
.navbar-user-info {
    animation: fadeInScale 0.4s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* ========== PARTNER PAGES STYLES ========== */

/* Partners Section - General */
.partners-section,
.partner-programm-section,
.streaming-partner-section {
    padding: 5rem 0 6rem;
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

/* Partners Box - General Container */
.partners-box,
.partner-programm-box,
.streaming-partner-box {
    background: linear-gradient(
        135deg,
        rgba(26, 21, 48, 0.9) 0%,
        rgba(20, 16, 40, 0.9) 100%
    );
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1.5px solid rgba(124, 58, 237, 0.25);
    border-radius: 1.5rem;
    padding: 3.5rem 4rem;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(124, 58, 237, 0.15);
    animation: fadeInUp 0.8s var(--animation-easing);
}

/* Subtle Border Glow on Hover - Very Gentle */
.partners-box::before,
.partner-programm-box::before,
.streaming-partner-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(
        135deg,
        rgba(124, 58, 237, 0.15),
        rgba(6, 182, 212, 0.1)
    );
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.partners-box:hover::before,
.partner-programm-box:hover::before,
.streaming-partner-box:hover::before {
    opacity: 0.5;
}

/* Background Pattern - Removed to prevent overflow issues */

/* Text Styles */
.partners-box p,
.partner-programm-box p,
.streaming-partner-box p {
    color: var(--color-dark-text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    animation: fadeIn 0.8s ease-out backwards;
}

.partners-box p:nth-child(1) { animation-delay: 0.1s; }
.partners-box p:nth-child(2) { animation-delay: 0.2s; }
.partners-box p:nth-child(3) { animation-delay: 0.3s; }
.partners-box p:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intro Text - Special Styling */
.partners-intro,
.programm-intro,
.streaming-intro {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-left: 1.25rem;
}

.partners-intro::before,
.programm-intro::before,
.streaming-intro::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.6);
}

/* Closing Text - Special Styling */
.partners-closing,
.programm-closing,
.streaming-closing {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary-light);
    margin-top: 2rem;
    margin-bottom: 0;
    padding: 1.25rem;
    background: rgba(124, 58, 237, 0.08);
    border-left: 3px solid var(--color-primary);
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

/* Partner Programme - Program Sections */
.programm-section {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 1rem;
    transition: all 0.4s ease;
    animation: fadeIn 0.8s ease-out backwards;
}

.programm-section:nth-child(3) { animation-delay: 0.2s; }
.programm-section:nth-child(4) { animation-delay: 0.3s; }

.programm-section:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

/* Program Subtitle */
.programm-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.programm-subtitle::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary-glow);
    animation: pulse 2s ease-in-out infinite;
}

/* Enhanced Section Header for Partner Pages */
.partners-section .section-header,
.partner-programm-section .section-header,
.streaming-partner-section .section-header {
    margin-bottom: 3.5rem;
}

/* Hover Effects for Links */
.partners-box a,
.partner-programm-box a,
.streaming-partner-box a {
    color: var(--color-primary-light);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.partners-box a::after,
.partner-programm-box a::after,
.streaming-partner-box a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: width 0.3s ease;
}

.partners-box a:hover,
.partner-programm-box a:hover,
.streaming-partner-box a:hover {
    color: var(--color-white);
}

.partners-box a:hover::after,
.partner-programm-box a:hover::after,
.streaming-partner-box a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .partners-box,
    .partner-programm-box,
    .streaming-partner-box {
        padding: 3rem 2.5rem;
    }
    
    .programm-section {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .partners-section,
    .partner-programm-section,
    .streaming-partner-section {
        padding: 4rem 0 5rem;
        min-height: auto;
    }
    
    .partners-box,
    .partner-programm-box,
    .streaming-partner-box {
        padding: 2.5rem 2rem;
        border-radius: 1.25rem;
    }
    
    .partners-box p,
    .partner-programm-box p,
    .streaming-partner-box p {
        font-size: 1rem;
    }
    
    .partners-intro,
    .programm-intro,
    .streaming-intro {
        font-size: 1.2rem;
    }
    
    .programm-subtitle {
        font-size: 1.2rem;
    }
    
    .programm-section {
        padding: 1.25rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .partners-box,
    .partner-programm-box,
    .streaming-partner-box {
        padding: 2rem 1.5rem;
    }
    
    .partners-box p,
    .partner-programm-box p,
    .streaming-partner-box p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .partners-intro,
    .programm-intro,
    .streaming-intro {
        font-size: 1.1rem;
        padding-left: 1rem;
    }
    
    .partners-closing,
    .programm-closing,
    .streaming-closing {
        font-size: 0.95rem;
        padding: 1rem;
    }
}