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

:root {
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-purple: #b347ff;
    --neon-green: #39ff14;
    --dark-bg: #0a0a0f;
    --dark-card: #1a1a2e;
    --dark-border: #16213e;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: var(--dark-bg);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(179, 71, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 0, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.cyber-header {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.cyber-header h1 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: var(--neon-cyan);
    text-shadow: 
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan);
    animation: glowPulse 2s ease-in-out infinite alternate;
}

.neon-pink {
    color: var(--neon-pink);
    text-shadow: 
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-pink);
}

.neon-green {
    color: var(--neon-green);
    text-shadow: 
        0 0 10px var(--neon-green),
        0 0 20px var(--neon-green),
        0 0 40px var(--neon-green);
}

@keyframes glowPulse {
    from { filter: brightness(1); }
    to { filter: brightness(1.3); }
}

.sub-title {
    font-size: 0.8rem;
    letter-spacing: 0.5em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}

.phone-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cyber-phone {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.2),
        0 0 60px rgba(255, 0, 255, 0.1),
        inset 0 2px 10px rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.2);
    position: relative;
}

.phone-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.camera {
    width: 16px;
    height: 16px;
    background: #000;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.speaker {
    width: 80px;
    height: 6px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
}

.phone-screen {
    width: 100%;
    height: calc(100% - 80px);
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.screen-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.home-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0a0a15 0%, #1a1a2e 100%);
    display: none;
    flex-direction: column;
    padding: 10px;
}

.home-screen.active {
    display: flex;
}

.status-bar-home {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
}

.app-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 30px 20px;
}

.app-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.app-icon:hover {
    transform: scale(1.1);
}

.icon-inner {
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.app-icon:hover .icon-inner {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    border-color: var(--neon-cyan);
}

.app-icon span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
}

.neon-pink-border { border-color: rgba(255, 0, 255, 0.3); box-shadow: 0 0 20px rgba(255, 0, 255, 0.1); }
.neon-cyan-border { border-color: rgba(0, 255, 255, 0.3); box-shadow: 0 0 20px rgba(0, 255, 255, 0.1); }
.neon-purple-border { border-color: rgba(179, 71, 255, 0.3); box-shadow: 0 0 20px rgba(179, 71, 255, 0.1); }
.neon-green-border { border-color: rgba(57, 255, 20, 0.3); box-shadow: 0 0 20px rgba(57, 255, 20, 0.1); }
.neon-orange-border { border-color: rgba(255, 107, 0, 0.3); box-shadow: 0 0 20px rgba(255, 107, 0, 0.1); }
.neon-yellow-border { border-color: rgba(255, 255, 0, 0.3); box-shadow: 0 0 20px rgba(255, 255, 0, 0.1); }
.neon-red-border { border-color: rgba(255, 51, 51, 0.3); box-shadow: 0 0 20px rgba(255, 51, 51, 0.1); }
.neon-blue-border { border-color: rgba(0, 136, 255, 0.3); box-shadow: 0 0 20px rgba(0, 136, 255, 0.1); }

.dock {
    display: flex;
    justify-content: center;
    padding: 15px;
}

.dock-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.app-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0a0a15 0%, #1a1a2e 100%);
    position: absolute;
    top: 0;
    left: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.app-screen.active {
    left: 0;
}

.app-screen.left {
    left: -100%;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.back-btn {
    width: 36px;
    height: 36px;
    background: rgba(0, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.app-header h2 {
    font-size: 1rem;
    color: var(--neon-cyan);
    letter-spacing: 0.2em;
}

.app-time {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
}

.email-list {
    flex: 1;
    padding: 10px 20px;
    overflow-y: auto;
}

.email-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 51, 51, 0.05);
    border-radius: 10px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 51, 51, 0.1);
    transition: all 0.3s ease;
}

.email-item:hover {
    background: rgba(255, 51, 51, 0.1);
}

.email-item.unread {
    background: rgba(255, 51, 51, 0.15);
    border-color: rgba(255, 51, 51, 0.3);
}

.email-checkbox {
    margin-top: 2px;
}

.email-content {
    flex: 1;
}

.email-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.email-sender {
    font-size: 0.75rem;
    color: #fff;
    font-weight: bold;
}

.email-time {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
}

.email-subject {
    display: block;
    font-size: 0.8rem;
    color: #fff;
    margin-bottom: 3px;
}

.email-preview {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.message-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.message-item:hover {
    background: rgba(0, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.2);
}

.message-item.unread {
    background: rgba(255, 0, 255, 0.1);
    border-color: rgba(255, 0, 255, 0.2);
}

.msg-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.msg-avatar.neon-pink {
    background: rgba(255, 0, 255, 0.2);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
}

.msg-avatar.neon-cyan {
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
}

.msg-avatar.neon-purple {
    background: rgba(179, 71, 255, 0.2);
    border: 1px solid var(--neon-purple);
    color: var(--neon-purple);
}

.msg-avatar.neon-yellow {
    background: rgba(255, 255, 0, 0.2);
    border: 1px solid #ffff00;
    color: #ffff00;
}

.msg-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.msg-name {
    font-size: 0.8rem;
    color: #fff;
    letter-spacing: 0.05em;
}

.msg-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.msg-time {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
}

.msg-badge {
    background: var(--neon-pink);
    color: #000;
    font-size: 0.6rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 5px var(--neon-pink); }
    50% { box-shadow: 0 0 15px var(--neon-pink); }
}

.chat-input {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.msg-input {
    flex: 1;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 10px 15px;
    color: #fff;
    font-size: 0.8rem;
    outline: none;
    transition: all 0.3s ease;
}

.msg-input:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.msg-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.send-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.map-view {
    flex: 1;
    position: relative;
    padding: 20px;
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: mapGridMove 10s linear infinite;
}

@keyframes mapGridMove {
    0% { background-position: 0 0; }
    100% { background-position: 20px 20px; }
}

.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.route-line {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    transform: rotate(-30deg);
    box-shadow: 0 0 10px var(--neon-pink);
}

.destination-info {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.dest-label {
    display: block;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.dest-name {
    display: block;
    font-size: 0.9rem;
    color: var(--neon-cyan);
    margin-bottom: 3px;
}

.dest-distance {
    font-size: 0.7rem;
    color: var(--neon-pink);
}

.marker-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.route-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.nav-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
}

.nav-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
}

.nav-stat svg {
    width: 20px;
    height: 20px;
}

.nav-stat span {
    color: var(--neon-cyan);
}

.camera-view {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.camera-frame {
    flex: 1;
    background: #000;
    margin: 10px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    top: -10%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    animation: scanMove 3s linear infinite;
}

@keyframes scanMove {
    0% { top: -10%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 110%; opacity: 0; }
}

.frame-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 2px solid var(--neon-cyan);
}

.frame-corner.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.frame-corner.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.frame-corner.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.frame-corner.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }

.live-text {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.55rem;
    color: var(--neon-green);
    letter-spacing: 0.2em;
    animation: liveBlink 1s ease-in-out infinite;
}

@keyframes liveBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.camera-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px;
}

.focus-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid var(--neon-cyan);
    border-radius: 10px;
    animation: focusPulse 2s ease-in-out infinite;
}

@keyframes focusPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.camera-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 15px;
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.flash-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 0, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.flash-btn:hover {
    background: rgba(255, 255, 0, 0.2);
}

.flash-btn.active {
    background: rgba(255, 255, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.3);
}

.camera-settings {
    display: flex;
    justify-content: space-between;
    padding: 0 20px 15px;
}

.setting-icon-btn, .gallery-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.setting-icon-btn:hover, .gallery-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.control-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 0, 0.1);
    border: 1px solid rgba(255, 255, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.3);
}

.control-btn.play {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    margin-bottom: 15px;
}

.volume-control svg {
    width: 20px;
    height: 20px;
}

.volume-slider {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 0, 0.2);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #ffff00;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.track-duration {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
}

.capture-btn {
    width: 55px;
    height: 55px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.capture-btn:active {
    transform: scale(0.9);
}

.settings-list {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.setting-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.setting-item:hover {
    background: rgba(0, 255, 255, 0.08);
}

#app9 {
    background: linear-gradient(180deg, rgba(57, 255, 20, 0.1) 0%, #0a0a0a 100%);
}

.plan-menu-btn {
    width: 35px;
    height: 35px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-menu-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.plan-tabs {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.plan-tab {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.plan-tab.active {
    color: #39ff14;
    background: rgba(57, 255, 20, 0.15);
}

.plan-tab:hover {
    color: #fff;
}

.plan-content {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.progress-ring-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.progress-ring {
    position: relative;
    width: 120px;
    height: 120px;
}

.progress-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-num {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #39ff14;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.progress-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.stat-card {
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    width: 35px;
    height: 35px;
    background: rgba(57, 255, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 18px;
    height: 18px;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.stat-name {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
}

.quick-actions h3 {
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 12px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid rgba(57, 255, 20, 0.1);
}

.task-checkbox {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.task-checkbox.empty {
    opacity: 0.5;
}

.task-text {
    flex: 1;
    font-size: 0.75rem;
    color: #fff;
}

.task-time {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
}

.goals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.goals-header h3 {
    font-size: 0.85rem;
    color: #fff;
}

.add-goal-btn {
    width: 30px;
    height: 30px;
    background: rgba(57, 255, 20, 0.2);
    border: 1px solid #39ff14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-goal-btn:hover {
    background: rgba(57, 255, 20, 0.3);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

.goals-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.goal-card {
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    gap: 12px;
    transition: all 0.3s ease;
}

.goal-card:hover {
    background: rgba(57, 255, 20, 0.12);
}

.goal-card.active {
    border-color: #39ff14;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
}

.goal-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.goal-icon svg {
    width: 20px;
    height: 20px;
}

.goal-info {
    flex: 1;
}

.goal-title {
    display: block;
    font-size: 0.8rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 3px;
}

.goal-desc {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.goal-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.goal-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #39ff14, #00ffff);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.goal-percent {
    font-size: 0.7rem;
    color: #39ff14;
}

.courses-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.courses-header h3 {
    font-size: 0.85rem;
    color: #fff;
}

.course-filter {
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 5px;
    padding: 5px 10px;
    color: #fff;
    font-size: 0.65rem;
    outline: none;
    cursor: pointer;
}

.course-filter option {
    background: #1a1a1a;
    color: #fff;
}

.courses-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.course-card {
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.15);
}

.course-card.featured {
    border-color: #39ff14;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.course-image {
    width: 100%;
    height: 60px;
}

.course-image svg {
    width: 100%;
    height: 100%;
}

.course-info {
    padding: 10px;
}

.course-title {
    display: block;
    font-size: 0.8rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 3px;
}

.course-instructor {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.course-meta {
    display: flex;
    gap: 15px;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.continue-btn {
    width: 100%;
    background: rgba(57, 255, 20, 0.3);
    border: 1px solid #39ff14;
    border-radius: 5px;
    padding: 8px;
    color: #39ff14;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.continue-btn:hover {
    background: rgba(57, 255, 20, 0.4);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

.start-btn {
    width: 100%;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 5px;
    padding: 8px;
    color: #00ffff;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.start-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

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

.progress-header h3 {
    font-size: 0.85rem;
    color: #fff;
}

.time-range {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 3px 8px;
    background: rgba(57, 255, 20, 0.1);
    border-radius: 5px;
}

.progress-chart {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 80px;
}

.chart-bar {
    width: 25px;
    background: linear-gradient(180deg, #39ff14, rgba(57, 255, 20, 0.3));
    border-radius: 4px 4px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-top: 8px;
    min-height: 10px;
    transition: height 0.5s ease;
}

.chart-bar span {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
}

.achievements-section h3 {
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 15px;
}

.badges-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.badge-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.badge-icon.gold {
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.badge-icon.silver {
    background: rgba(192, 192, 192, 0.2);
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
}

.badge-icon.bronze {
    background: rgba(205, 127, 50, 0.2);
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.3);
}

.badge-icon.locked {
    opacity: 0.5;
}

.badge-icon svg {
    width: 30px;
    height: 30px;
}

.badge-name {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
}

.email-tabs {
    display: flex;
    gap: 15px;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 51, 51, 0.2);
}

.tab {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tab.active {
    color: #ff3333;
    background: rgba(255, 51, 51, 0.1);
}

.tab:hover {
    color: #fff;
}

.email-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff3333;
}

.stat-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.email-star {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.email-star:hover {
    transform: scale(1.2);
}

.setting-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.setting-label {
    flex: 1;
    font-size: 0.85rem;
    color: #fff;
}

.setting-value {
    font-size: 0.75rem;
    color: var(--neon-cyan);
}

.toggle {
    width: 45px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 19px;
    height: 19px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle.active {
    background: rgba(0, 255, 255, 0.3);
}

.toggle.active::before {
    left: 23px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.phone-bottom {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.home-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
    border: 2px solid rgba(0, 255, 255, 0.2);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.1),
        inset 0 2px 5px rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-button:hover {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.flip-indicator {
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.flip-indicator span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2em;
}

.flip-hint {
    width: 40px;
    height: 40px;
    animation: flipArrow 2s ease-in-out infinite;
}

@keyframes flipArrow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-pink);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 var(--neon-cyan);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip: rect(30px, 9999px, 10px, 0); }
    25% { clip: rect(100px, 9999px, 110px, 0); }
    50% { clip: rect(40px, 9999px, 60px, 0); }
    75% { clip: rect(120px, 9999px, 150px, 0); }
    100% { clip: rect(50px, 9999px, 80px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(60px, 9999px, 130px, 0); }
    25% { clip: rect(20px, 9999px, 30px, 0); }
    50% { clip: rect(90px, 9999px, 100px, 0); }
    75% { clip: rect(10px, 9999px, 40px, 0); }
    100% { clip: rect(70px, 9999px, 120px, 0); }
}

@media (max-width: 480px) {
    .cyber-header h1 {
        font-size: 2rem;
    }
    
    .cyber-phone {
        width: 260px;
        height: 520px;
    }
}