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

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Mobile Container */
.mobile-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Header Section */
.header {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.profile-section {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #ff9ff3);
}

.profile-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.profile-image:hover {
    transform: scale(1.05);
}

.image-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 50%;
    animation: ringPulse 2s ease-in-out infinite;
    z-index: 1;
}

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

.main-title {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #ff9ff3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Countdown Section */
.countdown-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    z-index: 2;
}

.countdown-container {
    width: 100%;
    max-width: 400px;
}

.countdown-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.countdown-row:last-child {
    margin-bottom: 0;
}

.countdown-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.countdown-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.countdown-card:active {
    transform: scale(0.95);
}

.countdown-card:hover::before {
    transform: scaleX(1);
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.countdown-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Message Section */
.message-section {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.message-bubble {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: messageFloat 3s ease-in-out infinite;
}

.message-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff9ff3, #ff6b6b);
}

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

.message-text {
    font-size: 1rem;
    color: white;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-heart,
.floating-star {
    position: absolute;
    font-size: 1.2rem;
    animation: floatElement 8s ease-in-out infinite;
    opacity: 0.6;
}

.heart-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.heart-2 {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.heart-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.star-1 {
    top: 40%;
    right: 25%;
    animation-delay: 1s;
}

.star-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.star-3 {
    top: 60%;
    left: 15%;
    animation-delay: 5s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Bottom Decoration */
.bottom-decoration {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: 1;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50% 50% 0 0;
    animation: waveMove 6s ease-in-out infinite;
}

.wave-1 {
    animation-delay: 0s;
    opacity: 0.3;
}

.wave-2 {
    animation-delay: 2s;
    opacity: 0.2;
}

.wave-3 {
    animation-delay: 4s;
    opacity: 0.1;
}

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

/* Photo Placeholder */
.photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ff9ff3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: ringPulse 2s ease-in-out infinite;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .image-ring {
        width: 170px;
        height: 170px;
    }
    
    .photo-placeholder {
        width: 150px;
        height: 150px;
        font-size: 4rem;
    }
    
    .main-title {
        font-size: 2.8rem;
    }
    
    .countdown-value {
        font-size: 3rem;
    }
    
    .countdown-container {
        max-width: 500px;
    }
    
    .countdown-row {
        gap: 1.5rem;
    }
    
    .countdown-card {
        padding: 2rem 1.5rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .mobile-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .profile-image {
        width: 180px;
        height: 180px;
    }
    
    .image-ring {
        width: 200px;
        height: 200px;
    }
    
    .photo-placeholder {
        width: 180px;
        height: 180px;
        font-size: 5rem;
    }
    
    .main-title {
        font-size: 3.2rem;
    }
    
    .countdown-value {
        font-size: 3.5rem;
    }
    
    .countdown-container {
        max-width: 600px;
    }
    
    .countdown-row {
        gap: 2rem;
    }
    
    .countdown-card {
        padding: 2.5rem 2rem;
    }
    
    .message-text {
        font-size: 1.1rem;
    }
}

/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .header {
        padding: 1rem;
    }
    
    .profile-section {
        padding: 1.5rem;
    }
    
    .profile-image {
        width: 80px;
        height: 80px;
    }
    
    .image-ring {
        width: 100px;
        height: 100px;
    }
    
    .photo-placeholder {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .countdown-main {
        padding: 0.5rem;
    }
    
    .countdown-card {
        padding: 1rem 0.5rem;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .message-section {
        padding: 1rem;
    }
    
    .message-bubble {
        padding: 1rem;
    }
}

