/* Custom CSS for Hub Page */
.hub-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 20px 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    flex: 1;
}

.hub-logo-container {
    text-align: center;
    margin-bottom: 32px;
    animation: fadeDown 0.5s ease both;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Play icon removed */

.hub-logo-container img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.4));
    margin-bottom: 14px;
}

.hub-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    text-transform: uppercase;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-bottom: 32px;
    animation: fadeUp 0.5s ease both;
    animation-delay: 0.1s;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: #8b5cf6;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(90deg, #128c7e, #25d366);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Feature Cards */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-bottom: 40px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.18s ease;
    animation: fadeUp 0.45s ease both;
}

.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.3s; }
.feature-card:nth-child(3) { animation-delay: 0.4s; }

.feature-card:hover {
    background: rgba(124, 58, 237, 0.09);
    border-color: rgba(124, 58, 237, 0.35);
    transform: translateX(4px);
}

.feature-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--progress);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 0 14px rgba(124, 58, 237, 0.2);
    color: var(--purple-light);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

/* Specific icon sizing */
.feature-icon svg.fill-icon {
    fill: currentColor;
    stroke: none;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.feature-text p {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Bottom elements */
.hub-separator {
    width: 24px;
    height: 3px;
    border-radius: 3px;
    background: var(--purple-light);
    margin: 0 auto 24px;
    animation: fadeUp 0.5s ease both;
    animation-delay: 0.5s;
}

.hub-footer {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
    text-align: center;
    line-height: 1.8;
    animation: fadeUp 0.5s ease both;
    animation-delay: 0.6s;
}

/* Modal Prank */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg);
    border: 1px solid var(--purple-light);
    border-radius: 24px;
    padding: 32px 24px;
    max-width: 340px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.text-highlight {
    color: #fff;
    font-weight: 600;
}

.btn-secondary {
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.3);
    box-shadow: none;
    color: #fff;
    font-size: 14px;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}
.btn-secondary:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.5);
}
