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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a2e 0%, #16213e 25%, #1a237e 50%, #3949ab 75%, #5c6bc0 100%);
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

/* Status Bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.9);
    font-size: 14px;
    font-weight: 600;
    height: 44px;
}

.status-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.signal-bars {
    display: flex;
    gap: 2px;
    align-items: flex-end;
}

.bar {
    width: 3px;
    background: white;
    border-radius: 1px;
}

.bar:nth-child(1) { height: 4px; }
.bar:nth-child(2) { height: 6px; }
.bar:nth-child(3) { height: 8px; }
.bar:nth-child(4) { height: 10px; }

.carrier {
    font-size: 14px;
}

.status-center .time {
    font-size: 16px;
    font-weight: 600;
}

.status-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Browser Bar */
.browser-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.close-btn {
    font-size: 18px;
    font-weight: 300;
}

.browser-center {
    flex: 1;
    text-align: center;
}

.url-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.lock-icon {
    font-size: 12px;
}

.url {
    font-size: 14px;
    font-weight: 500;
}

.platform {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.menu-dots {
    font-size: 18px;
    font-weight: bold;
}

/* Main Content */
.main-content {
    padding: 60px 40px 40px;
    text-align: center;
    flex: 1;
}

.profile-section {
    margin-bottom: 80px;
}

.profile-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
    border-radius: 50%;
    border: 4px solid #00bcd4;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.3);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00bcd4, #4fc3f7, #81d4fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
}

.profile-subtitle {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 8px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Services Section */
.services-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.service-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.4;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 188, 212, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.2);
}

.service-button span {
    display: block;
}

/* Bottom Navigation */
.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.nav-btn {
    font-size: 20px;
    padding: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.nav-btn:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 480px) {
    .main-content {
        padding: 40px 20px 20px;
    }
    
    .profile-image {
        width: 160px;
        height: 160px;
    }
    
    .profile-name {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .profile-subtitle {
        font-size: 16px;
        letter-spacing: 4px;
    }
    
    .service-button {
        font-size: 16px;
        padding: 25px 15px;
    }
}

@media (max-width: 375px) {
    .profile-name {
        font-size: 32px;
    }
    
    .service-button {
        font-size: 15px;
    }
}

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

.profile-section {
    animation: fadeInUp 0.8s ease-out;
}

.services-section {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 188, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(63, 81, 181, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(156, 39, 176, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}