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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Phone Container */
.phone-container {
    width: 100%;
    max-width: 380px;
}

.phone-frame {
    background: #0a0a0a;
    border: 3px solid #1a1a1a;
    border-radius: 35px;
    padding: 12px;
    box-shadow: 0 10px 40px rgba(139, 0, 255, 0.2);
}

.phone-screen {
    background: linear-gradient(180deg, #0f0f0f 0%, #1a0a1a 100%);
    border-radius: 25px;
    overflow: hidden;
    min-height: 600px;
}

/* Status Bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px 5px;
    font-size: 13px;
    color: #f5f5f5;
}

.status-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.signal-icon,
.wifi-icon,
.battery-icon {
    width: 18px;
    height: 14px;
    color: #f5f5f5;
}

.time {
    font-weight: 500;
}

/* Content */
.content {
    padding: 30px 25px;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 35px;
}

.profile-pic {
    width: 110px;
    height: 110px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #8b00ff;
}

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

.profile-bio {
    color: #b34dff;
    font-size: 14px;
    margin-bottom: 15px;
}

.skz-decor {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.skz-logo {
    width: 40px;
    height: 40px;
}

.wolf {
    font-size: 24px;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: #1a1a1a;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #2a2a2a;
}

.link-card:hover {
    border-color: #8b00ff;
    background: #1f1f1f;
}

.link-card.instagram:hover {
    border-color: #8b00ff;
}

.link-card.tiktok:hover {
    border-color: #ff0033;
}

.social-icon {
    width: 24px;
    height: 24px;
}

.link-card span {
    color: #f5f5f5;
    font-size: 15px;
    font-weight: 500;
}

/* Info Section */
.info-section {
    text-align: center;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 12px;
    border-top: 1px solid #8b00ff;
    border-bottom: 1px solid #ff0033;
}

.info-text {
    color: #b34dff;
    font-size: 13px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #1a1a1a;
}

.footer p {
    color: #4a4a4a;
    font-size: 11px;
}
