* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

:root {
    --iphone-width: 100vw;
    --iphone-height: 100vh;
    --safe-top: env(safe-area-inset-top, 47px);
    --safe-bottom: env(safe-area-inset-bottom, 34px);
    --dynamic-island-height: 37px;
    --dynamic-island-width: 126px;
    --app-icon-size: 75px;
    --app-icon-radius: 18px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;
    background: #000;
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* iPhone Frame Container */
.iphone-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* Dynamic Island */
.dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: var(--dynamic-island-width);
    height: var(--dynamic-island-height);
    background: #000;
    border-radius: 20px;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.dynamic-island.expanded {
    width: 90%;
    height: 200px;
    border-radius: 40px;
}

.lang-label {
    font-size: 11px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: center;
}

/* Status Bar */
.status-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    padding-top: var(--safe-top);
    z-index: 999;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.status-bar .time {
    letter-spacing: 0.5px;
}

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

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

.signal-bar {
    width: 3px;
    background: #fff;
    border-radius: 1px;
}

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

.wifi-icon {
    width: 16px;
    height: 12px;
    position: relative;
}

.battery {
    display: flex;
    align-items: center;
    gap: 2px;
}

.battery-body {
    width: 25px;
    height: 12px;
    border: 1.5px solid #fff;
    border-radius: 3px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 2px;
}

.battery-level {
    width: 80%;
    height: 100%;
    background: #fff;
    border-radius: 1px;
}

.battery-cap {
    width: 2px;
    height: 6px;
    background: #fff;
    border-radius: 0 1px 1px 0;
}

/* Lock Screen - Modern AI Tech Background */
.lock-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 25%, #16213e 50%, #0f0f23 75%, #0a0a0f 100%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s;
    overflow: hidden;
}

.lock-screen.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.lock-screen-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(102, 126, 234, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(118, 75, 162, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(255, 0, 128, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 30%, rgba(0, 255, 136, 0.15) 0%, transparent 40%);
    filter: blur(40px);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* AI Particles */
.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.ai-particles::before,
.ai-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 
        10vw 20vh 0 rgba(102, 126, 234, 0.8),
        30vw 40vh 0 rgba(118, 75, 162, 0.8),
        50vw 10vh 0 rgba(0, 212, 255, 0.8),
        70vw 60vh 0 rgba(255, 0, 128, 0.8),
        90vw 30vh 0 rgba(0, 255, 136, 0.8),
        20vw 80vh 0 rgba(102, 126, 234, 0.6),
        60vw 90vh 0 rgba(118, 75, 162, 0.6),
        80vw 50vh 0 rgba(0, 212, 255, 0.6);
    animation: particleFloat 20s linear infinite;
}

.ai-particles::after {
    animation-delay: -10s;
    opacity: 0.5;
}

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100vh) rotate(360deg); }
}

.lock-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
    flex: 1;
}

.lock-date {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lock-time {
    color: #fff;
    font-size: 78px;
    font-weight: 200;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 30px;
    font-variant-numeric: tabular-nums;
}

.lock-brand {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.lock-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin-top: 10px;
    font-weight: 400;
}

/* Notification - CENTERED */
.notification {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%) translateY(-200px);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.notification.show {
    transform: translateY(-50%) translateY(0);
    opacity: 1;
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.notification-content {
    flex: 1;
}

.notification-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.notification-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.notification-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    align-self: flex-start;
}

/* Social Icons - Glowing */
.social-icons {
    position: absolute;
    top: calc(50% + 80px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 25px;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 100;
}

.social-icons.show {
    opacity: 1;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s;
    animation: glow 2s ease-in-out infinite;
}

.social-icon:active {
    transform: scale(0.9);
}

.social-icon.youtube,
.social-icon.instagram,
.social-icon.github,
.social-icon.tiktok {
    background: transparent;
    box-shadow: none;
}

@keyframes glow {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.1);
        filter: brightness(1.3);
    }
}

/* Swipe Up Indicator - JUMPING */
.swipe-up-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s;
}

.swipe-up-container.jump {
    animation: jump 0.5s ease-in-out infinite;
}

@keyframes jump {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-20px); }
}

.swipe-up-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.swipe-up-bar {
    width: 135px;
    height: 5px;
    background: #fff;
    border-radius: 3px;
    animation: bounce 2s infinite;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Lock Screen Bottom Buttons - FLASHING */
.lock-bottom-buttons {
    position: absolute;
    bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}

.lock-button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    transition: all 0.2s;
}

.lock-button.flash {
    animation: flash 0.5s ease-in-out infinite;
}

@keyframes flash {
    0%, 100% { 
        background: rgba(255, 255, 255, 0.2);
        box-shadow: none;
    }
    50% { 
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    }
}

/* Home Screen */
.home-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, #2d1b4e 0%, #1a1a2e 50%, #0f0f23 100%);
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
    overflow: hidden;
}

.home-screen.active {
    opacity: 1;
    pointer-events: all;
}

.home-screen-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(100, 149, 237, 0.2) 0%, transparent 70%);
    filter: blur(80px);
}

.home-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 60px 20px 30px;
}

/* Home Pages */
.home-page {
    display: none;
    flex: 1;
    flex-direction: column;
    overflow: hidden;
}

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

/* App Grid - BIGGER ICONS */
.app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 15px;
    padding: 20px 10px;
    flex: 1;
    align-content: start;
}

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

.app-icon-wrapper:active {
    transform: scale(0.9);
}

.app-icon {
    width: var(--app-icon-size);
    height: var(--app-icon-size);
    border-radius: var(--app-icon-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2),
        0 0 0 1px rgba(255,255,255,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.app-icon:hover {
    transform: scale(1.05);
    box-shadow: 
        0 6px 20px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.2),
        0 0 0 1px rgba(255,255,255,0.1);
}

.app-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 50%);
    pointer-events: none;
}

.app-icon.filled {
    background: linear-gradient(135deg, var(--icon-color-1), var(--icon-color-2));
}

.app-icon.empty {
    background: linear-gradient(135deg, #3a3a3c, #2c2c2e);
}

/* Custom Image Support for App Icons */
.app-icon img,
.app-icon svg {
    width: 80%;
    height: 80%;
    object-fit: contain;
    pointer-events: none;
}

.app-icon.png-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--app-icon-radius);
}

.app-icon.png-icon::before {
    display: none;
}

.app-label {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Profile Page */
.profile-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
    overflow-y: auto;
}

.profile-header {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.profile-picture-frame {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 3px;
    flex-shrink: 0;
    box-shadow: 
        0 4px 20px rgba(102, 126, 234, 0.4),
        0 0 0 1px rgba(255,255,255,0.1);
}

.profile-picture-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 21px;
    background: #1a1a2e;
}

.profile-bio {
    flex: 1;
    color: #fff;
}

.profile-bio h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-bio p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.7);
}

/* Skills Section */
.skills-section {
    flex: 1;
}

.skills-section h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 5px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.2s, background 0.2s;
}

.skill-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.12);
}

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

.skill-icon img,
.skill-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.skill-name {
    color: rgba(255,255,255,0.9);
    font-size: 11px;
    font-weight: 500;
    text-align: center;
}

/* Dock - BIGGER */
.dock {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 35px;
    padding: 18px;
    margin: 0 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.dock .app-icon {
    width: 65px;
    height: 65px;
}

/* App Panel */
.app-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 85%;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px 30px 0 0;
    z-index: 200;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.app-panel.open {
    transform: translateY(0);
}

.panel-handle {
    width: 40px;
    height: 5px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    margin: 10px auto;
    flex-shrink: 0;
}

.panel-header {
    display: flex;
    align-items: center;
    padding: 10px 20px 20px;
    flex-shrink: 0;
}

.close-btn {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    margin-right: 15px;
    border: none;
    outline: none;
}

.panel-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    flex: 1;
}

.panel-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px 40px;
    -webkit-overflow-scrolling: touch;
}

.panel-content::-webkit-scrollbar {
    display: none;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.project-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: linear-gradient(135deg, var(--icon-color-1), var(--icon-color-2));
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    overflow: hidden;
}

.project-icon-large img,
.project-icon-large svg {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.project-meta h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.project-meta .project-type {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-section {
    margin-bottom: 25px;
}

.section-title {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-content {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    line-height: 1.6;
}

.code-block {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 15px;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 13px;
    color: #a5b3ce;
    overflow-x: auto;
    margin-top: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.code-block .comment {
    color: #6b7280;
}

.code-block .command {
    color: #60a5fa;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.action-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.action-btn:active {
    transform: scale(0.95);
}

.action-btn.primary {
    background: #007aff;
    color: #fff;
}

.action-btn.secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* Tic Tac Toe Game */
.tic-tac-toe {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.tic-tac-toe.active {
    display: flex;
}

.game-status {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.game-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.game-cell {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    border: none;
    outline: none;
}

.game-cell:hover {
    background: rgba(255,255,255,0.2);
}

.game-cell.x {
    color: #ff6b6b;
}

.game-cell.o {
    color: #4ecdc4;
}

.game-controls {
    display: flex;
    gap: 10px;
}

.game-btn {
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    background: #007aff;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.game-btn.secondary {
    background: rgba(255,255,255,0.2);
}

/* Page dots */
.page-dots {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Swipe Indicator on Home */
.home-swipe-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 135px;
    height: 5px;
    background: #fff;
    border-radius: 3px;
    z-index: 10;
}

/* Responsive adjustments */
@media (min-width: 430px) {
    .iphone-container {
        max-width: 430px;
        margin: 0 auto;
        border-radius: 50px;
        box-shadow: 0 0 50px rgba(0,0,0,0.5);
    }

    body {
        background: #111;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-height: 800px) {
    :root {
        --app-icon-size: 65px;
    }

    .app-grid {
        gap: 15px 10px;
    }

    .profile-picture-frame {
        width: 80px;
        height: 80px;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.pulsing {
    animation: pulse 2s infinite;
}
