/* VERSION 3: PLAYFUL FUN - Full screen immersive */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #fff5f8 0%, #ffe8f0 50%, #e8f5fc 100%);
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.waves-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 0;
}

.waves-bg svg {
    width: 100%;
    height: 100%;
}

.main-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.header {
    padding: 20px 20px 10px;
    text-align: center;
    flex-shrink: 0;
}

.logo-container {
    display: inline-block;
}

.logo-circle-3d {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(255, 105, 180, 0.4),
        inset 0 -5px 15px rgba(0, 0, 0, 0.1),
        inset 0 5px 15px rgba(255, 255, 255, 0.3);
    animation: float3d 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.logo-circle-3d::before {
    content: '';
    position: absolute;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    top: 5px;
    left: 8px;
    z-index: 0;
}

@keyframes float3d {
    0%, 100% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(-15px) rotateX(10deg);
    }
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
    z-index: 1;
    position: relative;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 20px;
    overflow: hidden;
}

.content-wrapper {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.title-line {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.candy-text {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #9dd9ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.decorative-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.decorative-line .line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ffb3d9 0%, #9dd9ea 100%);
    border-radius: 10px;
}

.lead-text {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 1px;
}

.timer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.timer-card {
    background: white;
    border-radius: 15px;
    padding: 20px 18px;
    min-width: 90px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        inset 0 -2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff69b4 0%, #9dd9ea 100%);
}

.timer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.3);
}

.timer-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.timer-text {
    font-size: 0.75rem;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.timer-separator {
    font-size: 2rem;
    color: #ff69b4;
    font-weight: 900;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
}

.card-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.card-content {
    text-align: left;
    flex: 1;
}

.card-label {
    font-size: 0.7rem;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: 600;
}

.card-value {
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.card-value:hover {
    color: #ff69b4;
}

.social-wrapper {
    margin-top: 20px;
}

.social-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb3d9 0%, #ff69b4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link svg {
    width: 26px;
    height: 26px;
    position: relative;
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.5);
}

.floating-elements {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.float-item {
    position: absolute;
    font-size: 3rem;
    opacity: 0.12;
    animation: floatElement 7s ease-in-out infinite;
}

.float-item:nth-child(odd) {
    animation-direction: alternate;
}

.float-item:nth-child(even) {
    animation-direction: alternate-reverse;
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(15px, -20px) rotate(10deg);
    }
    66% {
        transform: translate(-10px, -30px) rotate(-10deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .title-line {
        font-size: 2.5rem;
    }
    
    .timer-card {
        min-width: 85px;
        padding: 18px 16px;
    }
    
    .timer-value {
        font-size: 2.2rem;
    }
    
    .info-cards {
        gap: 12px;
    }
    
    .info-card {
        padding: 18px;
    }
}

@media (max-width: 768px) {
    body {
        height: 100vh;
        overflow: hidden;
    }
    
    .header {
        padding: 15px 15px 8px;
    }
    
    .logo-circle-3d {
        width: 80px;
        height: 80px;
    }
    
    .logo-circle-3d::before {
        width: 68px;
        height: 68px;
    }
    
    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .main-content {
        padding: 5px 15px 15px;
    }
    
    .main-title {
        margin-bottom: 10px;
        gap: 3px;
    }
    
    .title-line {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .decorative-line {
        margin-bottom: 10px;
        font-size: 1.2rem;
        gap: 8px;
    }
    
    .decorative-line .line {
        width: 40px;
    }
    
    .lead-text {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .timer-container {
        gap: 6px;
        margin-bottom: 20px;
    }
    
    .timer-card {
        min-width: 70px;
        padding: 15px 12px;
        border-radius: 12px;
    }
    
    .timer-value {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    
    .timer-text {
        font-size: 0.65rem;
    }
    
    .timer-separator {
        font-size: 1.5rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .info-card {
        padding: 15px;
        border-radius: 12px;
    }
    
    .card-icon {
        font-size: 1.6rem;
    }
    
    .card-label {
        font-size: 0.65rem;
    }
    
    .card-value {
        font-size: 0.85rem;
    }
    
    .social-wrapper {
        margin-top: 15px;
    }
    
    .social-label {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
    }
    
    .social-link svg {
        width: 24px;
        height: 24px;
    }
    
    .float-item {
        font-size: 2rem;
    }
    
    .waves-bg {
        height: 150px;
    }
}

@media (max-width: 480px) {
    body {
        height: 100vh;
        overflow: hidden;
    }
    
    .header {
        padding: 12px 10px 5px;
    }
    
    .logo-circle-3d {
        width: 70px;
        height: 70px;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .main-content {
        padding: 5px 12px 12px;
    }
    
    .main-title {
        margin-bottom: 8px;
    }
    
    .title-line {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .decorative-line {
        font-size: 1rem;
        gap: 6px;
        margin-bottom: 8px;
    }
    
    .decorative-line .line {
        width: 30px;
    }
    
    .lead-text {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .timer-container {
        gap: 5px;
        margin-bottom: 15px;
    }
    
    .timer-card {
        min-width: 60px;
        padding: 12px 8px;
    }
    
    .timer-value {
        font-size: 1.5rem;
    }
    
    .timer-text {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
    
    .timer-separator {
        font-size: 1.2rem;
    }
    
    .info-cards {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .info-card {
        padding: 12px;
        gap: 10px;
    }
    
    .card-icon {
        font-size: 1.4rem;
    }
    
    .card-label {
        font-size: 0.6rem;
    }
    
    .card-value {
        font-size: 0.75rem;
    }
    
    .social-wrapper {
        margin-top: 12px;
    }
    
    .social-label {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link svg {
        width: 22px;
        height: 22px;
    }
    
    .waves-bg {
        height: 120px;
    }
}
