* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    backdrop-filter: blur(0px);
}

.light-rays-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.org-credit {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.left-corner-gif {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corner-gif {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: none;
    backdrop-filter: none;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    background: transparent;
}

.corner-gif:hover {
    transform: scale(1.1);
    box-shadow: none;
    border: none;
}

.hashtag {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.02);
}

.hashtag:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 16px 64px rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.header {
    position: relative;
    z-index: 10;
    padding: 60px 40px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.integrated-search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(60px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 12px 24px;
    max-width: 800px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0.2, 0.2, 1);
    position: relative;
    overflow: hidden;
    gap: 28px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 1px 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.integrated-search-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.integrated-search-bar:hover::before {
    left: 100%;
}

.integrated-search-bar:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.25),
        0 1px 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.search-content {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 20px;
}

.search-content .search-icon {
    margin-right: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.search-content .title-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) contrast(1.1);
}

.search-content .title-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2);
}

.search-content .title {
    display: none;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.integrated-nav-buttons {
    display: flex;
    gap: 8px;
}

.integrated-nav-buttons .ios-button {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 22px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
}

.integrated-nav-buttons .ios-button:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.03);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(40px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.integrated-nav-buttons .ios-button.primary {
    color: rgba(255, 255, 255, 0.7);
}

.integrated-nav-buttons .ios-button.primary:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.05);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.integrated-nav-buttons .ios-button.secondary {
    color: rgba(255, 255, 255, 0.7);
}

.integrated-nav-buttons .ios-button.secondary:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.05);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hashtag-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.servicios-button {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(120px) saturate(300%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.servicios-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.3) 0%,
        rgba(74, 144, 226, 0.1) 25%,
        transparent 50%,
        rgba(74, 144, 226, 0.1) 75%,
        rgba(74, 144, 226, 0.3) 100%);
    border-radius: 52px;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    z-index: -1;
}

.servicios-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 1s cubic-bezier(0.23, 1, 0.320, 1);
    pointer-events: none;
}

.servicios-button:hover {
    background: rgba(74, 144, 226, 0.03);
    border-color: rgba(74, 144, 226, 0.3);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(74, 144, 226, 0.15),
        0 8px 24px rgba(74, 144, 226, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(150px) saturate(400%);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.servicios-button:hover::before {
    opacity: 1;
}

.servicios-button:hover::after {
    left: 100%;
}

.servicios-button:active {
    transform: translateY(-4px) scale(1.02);
    transition: transform 0.1s ease;
}

.main-content {
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    width: 100%;
    align-items: center;
}

.premium-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(100px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(255, 255, 255, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform-style: preserve-3d;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 34px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.premium-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.card-background-glow {
    position: absolute;
    top: -100%;
    left: -100%;
    right: -100%;
    bottom: -100%;
    opacity: 0;
    transition: all 1s cubic-bezier(0.23, 1, 0.320, 1);
    pointer-events: none;
    filter: blur(60px);
}

.twitch-glow {
    background: radial-gradient(ellipse at center, rgba(145, 70, 255, 0.6) 0%, rgba(145, 70, 255, 0.3) 30%, transparent 70%);
}

.youtube-glow {
    background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0.6) 0%, rgba(255, 0, 0, 0.3) 30%, transparent 70%);
}

.card-inner {
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 3;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card-header-premium {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.platform-icon {
    padding: 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
    backdrop-filter: blur(60px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 1px 1px rgba(255, 255, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.platform-icon::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.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.twitch-icon-premium {
    background: rgba(145, 70, 255, 0.2);
    border: 2px solid rgba(145, 70, 255, 0.3);
    box-shadow: 
        0 0 40px rgba(145, 70, 255, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.platform-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.platform-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.card-content-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.channel-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.channel-name-premium {
    font-size: 26px;
    font-weight: 800;
    color: #9146FF;
    margin: 0;
    background: linear-gradient(135deg, #9146FF, #B673FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    text-shadow: 0 0 30px rgba(145, 70, 255, 0.5);
}

.live-status {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.live-indicator-premium {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.live-dot-premium {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #ff4444, #ff6666);
    border-radius: 50%;
    animation: pulse-premium 2s infinite;
    box-shadow: 
        0 0 30px rgba(255, 68, 68, 0.8),
        0 0 60px rgba(255, 68, 68, 0.4);
    position: relative;
}

.live-dot-premium::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: inherit;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-premium {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 68, 68, 0.8), 0 0 60px rgba(255, 68, 68, 0.4);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.3);
        box-shadow: 0 0 50px rgba(255, 68, 68, 1), 0 0 100px rgba(255, 68, 68, 0.6);
    }
}

@keyframes pulse-ring {
    0% { 
        transform: scale(1);
        opacity: 0.3;
    }
    100% { 
        transform: scale(2.5);
        opacity: 0;
    }
}

.live-text {
    color: #ff4444;
}

.viewer-count {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    backdrop-filter: blur(60px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 1px 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.card-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.action-text {
    font-size: 16px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.card-action svg {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.twitch-premium:hover {
    transform: translateY(-20px) scale(1.05) rotateX(5deg);
    box-shadow: 
        0 60px 180px rgba(145, 70, 255, 0.2),
        0 20px 60px rgba(145, 70, 255, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(145, 70, 255, 0.3);
    backdrop-filter: blur(120px) saturate(250%);
    background: rgba(145, 70, 255, 0.01);
}

.twitch-premium:hover::before {
    opacity: 1;
}

.twitch-premium:hover::after {
    opacity: 1;
}

.twitch-premium:hover .card-background-glow {
    opacity: 0.3;
    transform: scale(1.2) rotate(10deg);
    filter: blur(40px);
}

.twitch-premium:hover .card-inner {
    transform: translateZ(20px);
}

.twitch-premium:hover .card-header-premium {
    transform: translateY(-5px);
}

.twitch-premium:hover .twitch-icon-premium {
    background: rgba(145, 70, 255, 0.3);
    border-color: rgba(145, 70, 255, 0.5);
    transform: scale(1.2) rotate(5deg);
    box-shadow: 
        0 0 40px rgba(145, 70, 255, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.twitch-premium:hover .twitch-icon-premium::before {
    left: 100%;
}

.twitch-premium:hover .channel-name-premium {
    transform: scale(1.05);
    text-shadow: 
        0 0 30px rgba(145, 70, 255, 0.4),
        0 0 60px rgba(145, 70, 255, 0.2);
}

.twitch-premium:hover .card-action {
    background: rgba(145, 70, 255, 0.1);
    border-color: rgba(145, 70, 255, 0.2);
    backdrop-filter: blur(80px) saturate(200%);
    transform: translateY(-2px);
    box-shadow: 
        0 0 20px rgba(145, 70, 255, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.twitch-premium:hover .card-action::before {
    left: 100%;
}

.twitch-premium:hover .action-text {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    transform: translateX(-2px);
}

.twitch-premium:hover .card-action svg {
    transform: translateX(5px) scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

.youtube-icon-premium {
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid rgba(255, 0, 0, 0.3);
    box-shadow: 
        0 0 40px rgba(255, 0, 0, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.video-details-premium {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-title-premium {
    font-size: 26px;
    font-weight: 800;
    color: #FF0000;
    margin: 0;
    background: linear-gradient(135deg, #FF0000, #FF4444);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.video-status {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.video-indicator-premium {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.video-dot-premium {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #FF0000, #FF4444);
    border-radius: 50%;
    animation: pulse-video 2s infinite;
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.8),
        0 0 60px rgba(255, 0, 0, 0.4);
    position: relative;
}

.video-dot-premium::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: inherit;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-video-ring 2s infinite;
}

@keyframes pulse-video {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.8), 0 0 60px rgba(255, 0, 0, 0.4);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.3);
        box-shadow: 0 0 50px rgba(255, 0, 0, 1), 0 0 100px rgba(255, 0, 0, 0.6);
    }
}

@keyframes pulse-video-ring {
    0% { 
        transform: scale(1);
        opacity: 0.3;
    }
    100% { 
        transform: scale(2.5);
        opacity: 0;
    }
}

.video-text {
    color: #FF0000;
}

.subscriber-count {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* YouTube Card Enhanced Styles */
.youtube-premium {
    background: rgba(255, 0, 0, 0.01);
    position: relative;
    overflow: hidden;
}

.youtube-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 0, 0, 0.1) 0%,
        rgba(255, 68, 68, 0.15) 25%,
        rgba(255, 102, 102, 0.1) 50%,
        rgba(255, 0, 0, 0.05) 75%,
        transparent 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.23, 1, 0.320, 1);
    border-radius: 32px;
    z-index: 1;
}

.youtube-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://img.youtube.com/vi/qogSc3mvS20/maxresdefault.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
    border-radius: 32px;
    z-index: 1;
    filter: brightness(0.4) contrast(1.2);
}

.youtube-premium:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, 
        rgba(255, 0, 0, 0.15) 0%,
        rgba(255, 68, 68, 0.2) 25%,
        rgba(255, 102, 102, 0.15) 50%,
        rgba(255, 0, 0, 0.1) 75%,
        transparent 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 3px,
            rgba(255, 255, 255, 0.05) 3px,
            rgba(255, 255, 255, 0.05) 6px
        );
    animation: videoPreview 2s ease-in-out infinite alternate;
}

.youtube-premium:hover::after {
    opacity: 0.6;
    filter: brightness(0.6) contrast(1.4);
    transform: scale(1.02);
}

@keyframes videoPreview {
    0% {
        background-position: 0% 0%, 0 0;
        filter: hue-rotate(0deg) brightness(1);
    }
    50% {
        background-position: 50% 50%, 10px 10px;
        filter: hue-rotate(5deg) brightness(1.1);
    }
    100% {
        background-position: 100% 100%, 20px 20px;
        filter: hue-rotate(0deg) brightness(1);
    }
}

.youtube-premium .card-inner {
    position: relative;
    z-index: 2;
}

.youtube-premium:hover {
    transform: translateY(-20px) scale(1.05) rotateX(5deg);
    box-shadow: 
        0 60px 180px rgba(255, 0, 0, 0.15),
        0 20px 60px rgba(255, 0, 0, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 0, 0, 0.2);
    backdrop-filter: blur(120px) saturate(200%);
    background: rgba(255, 0, 0, 0.02);
}

.youtube-premium:hover::before {
    opacity: 1;
}

.youtube-premium:hover::after {
    opacity: 1;
}

.youtube-premium:hover .card-background-glow {
    opacity: 0.15;
    transform: scale(1.2) rotate(-10deg);
    filter: blur(40px);
}

.youtube-premium:hover .card-inner {
    transform: translateZ(20px);
}

.youtube-premium:hover .card-header-premium {
    transform: translateY(-5px);
}

.youtube-premium:hover .youtube-icon-premium {
    background: rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.5);
    transform: scale(1.2) rotate(-5deg);
    box-shadow: 
        0 0 40px rgba(255, 0, 0, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.youtube-premium:hover .video-title-premium {
    transform: scale(1.05);
    text-shadow: 
        0 0 30px rgba(255, 0, 0, 0.4),
        0 0 60px rgba(255, 0, 0, 0.2);
}

.youtube-premium:hover .card-action {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
    backdrop-filter: blur(80px) saturate(200%);
    transform: translateY(-2px);
    box-shadow: 
        0 0 20px rgba(255, 0, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Create Web Button */
.create-web-section {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.create-web-button {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(120px) saturate(300%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 0;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
}

.create-web-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.3) 0%,
        rgba(74, 144, 226, 0.1) 25%,
        transparent 50%,
        rgba(74, 144, 226, 0.1) 75%,
        rgba(74, 144, 226, 0.3) 100%);
    border-radius: 52px;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    z-index: -1;
}

.button-glow {
    position: absolute;
    top: -100%;
    left: -100%;
    right: -100%;
    bottom: -100%;
    background: radial-gradient(ellipse at center, rgba(74, 144, 226, 0.4) 0%, rgba(74, 144, 226, 0.2) 30%, transparent 70%);
    opacity: 0;
    transition: all 1s cubic-bezier(0.23, 1, 0.320, 1);
    pointer-events: none;
    filter: blur(40px);
}

.button-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 40px;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.button-icon {
    color: #4A90E2;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    filter: drop-shadow(0 0 10px rgba(74, 144, 226, 0.3));
}

.button-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.button-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 1s cubic-bezier(0.23, 1, 0.320, 1);
    pointer-events: none;
}

.create-web-button:hover {
    background: rgba(74, 144, 226, 0.03);
    border-color: rgba(74, 144, 226, 0.3);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(74, 144, 226, 0.15),
        0 8px 24px rgba(74, 144, 226, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(150px) saturate(400%);
}

.create-web-button:hover::before {
    opacity: 1;
}

.create-web-button:hover .button-glow {
    opacity: 0.6;
    transform: scale(1.3);
    filter: blur(30px);
}

.create-web-button:hover .button-content {
    transform: translateZ(10px);
}

.create-web-button:hover .button-icon {
    color: #fff;
    transform: scale(1.1) rotate(180deg);
    filter: drop-shadow(0 0 20px rgba(74, 144, 226, 0.8));
}

.create-web-button:hover .button-text {
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    transform: translateX(2px);
}

.create-web-button:hover .button-shimmer {
    left: 100%;
}

.create-web-button:active {
    transform: translateY(-4px) scale(1.02);
    transition: transform 0.1s ease;
}

/* Stepper Interface */
.stepper-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 10000;
    overflow-y: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.stepper-page.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.stepper-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
}

.stepper-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 40px);
    justify-content: center;
}

.stepper-back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(60px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 12px 24px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
    align-self: flex-start;
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.25),
        0 4px 16px rgba(255, 255, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stepper-back-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.stepper-back-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.stepper-back-button:hover::before {
    left: 100%;
}

.stepper-back-button svg {
    transition: transform 0.3s ease;
}

.stepper-back-button:hover svg {
    transform: translateX(-3px);
}

.stepper-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(80px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 1px 1px rgba(255, 255, 255, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    justify-content: space-between;
    min-height: 500px;
}

.stepper-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-right: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    width: 20%;
}

.step-counter {
    font-size: 16px;
    font-weight: 600;
    color: #4A90E2;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.step-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.step-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.3;
}

.step-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.option-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.option-button {
    padding: 20px 32px;
    background: rgba(74, 144, 226, 0.1);
    backdrop-filter: blur(60px) saturate(180%);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.option-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.option-button:hover {
    background: rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.2);
}

.option-button:hover::before {
    left: 100%;
}

.option-button.selected {
    background: rgba(74, 144, 226, 0.3);
    border-color: rgba(74, 144, 226, 0.7);
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.4);
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(60px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, transparent 50%, rgba(74, 144, 226, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.plan-card:hover {
    border-color: rgba(74, 144, 226, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.15);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card.selected {
    border-color: rgba(74, 144, 226, 0.7);
    background: rgba(74, 144, 226, 0.05);
    box-shadow: 0 0 40px rgba(74, 144, 226, 0.3);
}

.plan-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.plan-card .price {
    font-size: 32px;
    font-weight: 800;
    color: #4A90E2;
    margin-bottom: 16px;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.plan-card li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.plan-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-weight: bold;
}

.discord-input {
    max-width: 400px;
    margin: 30px auto;
}

.discord-input input {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(150%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.discord-input input:focus {
    outline: none;
    border-color: rgba(74, 144, 226, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.2);
}

.discord-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-info {
    background: rgba(74, 144, 226, 0.1);
    backdrop-filter: blur(60px) saturate(180%);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 20px;
    padding: 32px;
    margin-top: 30px;
    text-align: center;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.contact-info .email {
    font-size: 20px;
    font-weight: 600;
    color: #4A90E2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info .email:hover {
    color: #fff;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.8);
}

.stepper-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.nav-button {
    padding: 16px 32px;
    border-radius: 25px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-button.primary {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: #fff;
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.3);
}

.nav-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(74, 144, 226, 0.4);
}

.nav-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.nav-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-button:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Footer Styles */
.footer-section {
    padding: 60px 40px 40px;
    margin-top: 100px;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-row p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-row:first-child p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.footer-row:last-child p {
    color: #4A90E2;
    font-weight: 600;
}

/* Terms and Conditions Page */
.terms-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%,
        rgba(10, 10, 15, 0.95) 50%,
        rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    overflow-y: auto;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.terms-page.hidden {
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(0px) saturate(100%);
}

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(80px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 12px 24px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    margin-bottom: 40px;
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.25),
        0 4px 16px rgba(255, 255, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.back-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 
        0 24px 80px rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(255, 255, 255, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(100px) saturate(250%);
}

.back-button:hover::before {
    left: 100%;
}

.back-button svg {
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-3px);
}

.terms-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(120px) saturate(250%) contrast(120%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 60px 50px;
    color: #fff;
    box-shadow: 
        0 32px 128px rgba(0, 0, 0, 0.3),
        0 8px 32px rgba(255, 255, 255, 0.05),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.terms-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%,
        transparent 25%,
        transparent 50%,
        rgba(74, 144, 226, 0.1) 75%,
        rgba(255, 255, 255, 0.15) 100%);
    border-radius: 34px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite alternate;
}

.terms-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.05) 0%,
            transparent 50%,
            rgba(74, 144, 226, 0.02) 100%);
    border-radius: 32px;
    pointer-events: none;
    z-index: 1;
}

@keyframes borderGlow {
    0% {
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.2) 0%,
            transparent 25%,
            transparent 50%,
            rgba(74, 144, 226, 0.1) 75%,
            rgba(255, 255, 255, 0.15) 100%);
    }
    100% {
        background: linear-gradient(135deg, 
            rgba(74, 144, 226, 0.15) 0%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.1) 75%,
            rgba(74, 144, 226, 0.2) 100%);
    }
}

.terms-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    text-align: center;
    text-shadow: 0 0 30px rgba(74, 144, 226, 0.5);
    background: linear-gradient(135deg, #fff, #4A90E2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.last-updated {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    font-style: italic;
}

.terms-intro {
    background: rgba(74, 144, 226, 0.08);
    backdrop-filter: blur(60px) saturate(180%);
    border: 2px solid rgba(74, 144, 226, 0.2);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 40px;
    box-shadow: 
        0 16px 64px rgba(74, 144, 226, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.terms-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 18px;
    z-index: -1;
}

.terms-intro p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.terms-section {
    margin-bottom: 32px;
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.terms-section:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(60px) saturate(200%);
}

.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.terms-section:hover::before {
    left: 100%;
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.terms-section h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
}

.terms-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.terms-section p:last-child {
    margin-bottom: 0;
}

/* Completion Screen Styles */
.completion-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

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

.success-checkmark {
    margin-bottom: 30px;
    animation: bounceIn 1s cubic-bezier(0.23, 1, 0.320, 1);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-checkmark svg {
    filter: drop-shadow(0 0 20px rgba(0, 200, 81, 0.3));
}

.circle-animation {
    stroke-dasharray: 62.83;
    stroke-dashoffset: 62.83;
    animation: drawCircle 1s ease-in-out 0.2s forwards;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

.check-animation {
    stroke-dasharray: 10;
    stroke-dashoffset: 10;
    animation: drawCheck 0.5s ease-in-out 0.8s forwards;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.completion-details {
    background: rgba(0, 200, 81, 0.06);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(0, 200, 81, 0.15);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    max-width: 500px;
    width: 100%;
    box-shadow: 
        0 8px 32px rgba(0, 200, 81, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideInUp 0.6s cubic-bezier(0.23, 1, 0.320, 1) 0.4s both;
}

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

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-item strong {
    color: #00C851;
    font-weight: 600;
}

.detail-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-family: 'Monaco', 'Menlo', monospace;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.completion-container h2 {
    color: #00C851;
    margin-bottom: 16px;
    font-size: 32px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 200, 81, 0.3);
}

.completion-container p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.6;
}

/* Services Page */
.services-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%,
        rgba(10, 10, 15, 0.95) 50%,
        rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    overflow-y: auto;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.services-page.hidden {
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(0px) saturate(100%);
}

.services-container {
    max-width: 900px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.services-back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(80px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 12px 24px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    margin-bottom: 60px;
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.25),
        0 4px 16px rgba(255, 255, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.services-back-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.services-back-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 
        0 24px 80px rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(255, 255, 255, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(100px) saturate(250%);
}

.services-back-button:hover::before {
    left: 100%;
}

.services-back-button svg {
    transition: transform 0.3s ease;
}

.services-back-button:hover svg {
    transform: translateX(-3px);
}

.services-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(120px) saturate(250%) contrast(120%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 80px 60px;
    color: #fff;
    box-shadow: 
        0 32px 128px rgba(0, 0, 0, 0.3),
        0 8px 32px rgba(255, 255, 255, 0.05),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
}

.services-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%,
        transparent 25%,
        transparent 50%,
        rgba(74, 144, 226, 0.1) 75%,
        rgba(255, 255, 255, 0.15) 100%);
    border-radius: 34px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite alternate;
}

.services-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.05) 0%,
            transparent 50%,
            rgba(74, 144, 226, 0.02) 100%);
    border-radius: 32px;
    pointer-events: none;
    z-index: 1;
}

.services-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 0 30px rgba(74, 144, 226, 0.5);
    background: linear-gradient(135deg, #fff, #4A90E2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.services-content .coming-soon {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.services-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 144, 226, 0.1);
    backdrop-filter: blur(60px) saturate(180%);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 50%;
    box-shadow: 
        0 0 40px rgba(74, 144, 226, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.services-icon::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.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.services-icon svg {
    color: #4A90E2;
    filter: drop-shadow(0 0 20px rgba(74, 144, 226, 0.5));
}

/* Mobile Responsiveness for Stepper */
@media (max-width: 768px) {
    .stepper-page {
        padding: 15px;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .stepper-container {
        min-height: calc(100vh - 30px);
        justify-content: flex-start;
        padding-top: 20px;
    }
    
    .stepper-content {
        padding: 30px 25px;
        min-height: auto;
        flex: none;
    }
    
    .step-content {
        padding: 15px 0;
        margin-bottom: 25px;
    }
    
    .stepper-back-button {
        margin-bottom: 25px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .step-content h1 {
        font-size: 32px;
    }
    
    .step-content h2 {
        font-size: 28px;
    }
    
    .step-content p {
        font-size: 16px;
    }
    
    .option-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .option-button {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
    }
    
    .plan-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nav-button {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .stepper-page {
        padding: 10px;
    }
    
    .stepper-content {
        padding: 25px 20px;
        border-radius: 24px;
    }
    
    .step-content h1 {
        font-size: 28px;
    }
    
    .step-content h2 {
        font-size: 24px;
    }
    
    .stepper-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-button {
        width: 100%;
    }
}

/* Mobile Responsiveness for Services */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        padding: 40px 20px 30px;
    }
    
    .servicios-button {
        padding: 16px 32px;
        font-size: 14px;
    }
    
    .services-container {
        padding: 20px 15px;
    }
    
    .services-content {
        padding: 60px 40px;
        border-radius: 24px;
    }
    
    .services-content h1 {
        font-size: 36px;
    }
    
    .services-content .coming-soon {
        font-size: 20px;
    }
    
    .services-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 30px;
    }
    
    .services-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .services-back-button {
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .services-content {
        padding: 40px 30px;
    }
    
    .services-content h1 {
        font-size: 28px;
    }
    
    .services-content .coming-soon {
        font-size: 18px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .integrated-search-bar {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        border-radius: 32px;
    }
    
    .search-content .title {
        font-size: 24px;
    }
    
    .integrated-nav-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .content-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .premium-card {
        min-height: 280px;
    }
    
    .card-inner {
        padding: 24px;
    }
    
    .platform-icon {
        padding: 14px;
    }
    
    .platform-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .platform-info h3 {
        font-size: 18px;
    }
    
    .channel-name-premium,
    .video-title-premium {
        font-size: 22px;
    }
    
    .footer-row {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-section {
        padding: 40px 20px 30px;
        margin-top: 60px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .footer-row p {
        font-size: 12px;
    }
}

/* Performance optimizations */
.video-card,
.social-card,
.search-bar,
.ios-button {
    will-change: transform;
}