/* ============================================
   Template 09 - Crystal Ice
   ============================================ */

.template-ice {
    background: linear-gradient(180deg, #1a237e 0%, #283593 50%, #3949ab 100%);
}

/* Frost Overlay */
.frost-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    background:
        radial-gradient(ellipse at top left, rgba(224, 247, 250, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(128, 222, 234, 0.1) 0%, transparent 50%);
}

/* Logo */
.ice-logo {
    filter: drop-shadow(0 0 20px rgba(77, 208, 225, 0.4));
}

.ice-icon {
    background: linear-gradient(135deg, #e0f7fa 0%, #4dd0e1 100%);
    color: #1a237e;
}

/* Ice Heading */
.ice-heading {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
}

.text-ice-frost {
    display: block;
    color: rgba(224, 247, 250, 0.9);
    text-shadow: 0 0 30px rgba(77, 208, 225, 0.5);
}

.text-ice-crystal {
    display: block;
    background: linear-gradient(135deg, #e0f7fa 0%, #80deea 50%, #4dd0e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ice Countdown */
.ice-countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.ice-item {
    text-align: center;
}

.ice-crystal-shape {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(224, 247, 250, 0.2) 0%, rgba(77, 208, 225, 0.1) 100%);
    border: 1px solid rgba(224, 247, 250, 0.3);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    position: relative;
}

.ice-crystal-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.5), transparent);
}

.ice-crystal-shape::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.ice-item .countdown-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #e0f7fa;
    background: none;
    -webkit-text-fill-color: #e0f7fa;
    position: relative;
    z-index: 1;
}

/* Ice Form */
.ice-form input {
    background: rgba(224, 247, 250, 0.1);
    border: 1px solid rgba(224, 247, 250, 0.3);
}

.ice-form input:focus {
    border-color: #4dd0e1;
    box-shadow: 0 0 0 3px rgba(77, 208, 225, 0.2);
}

.btn-ice {
    background: linear-gradient(135deg, #e0f7fa 0%, #4dd0e1 100%);
    color: #1a237e;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-ice:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(77, 208, 225, 0.4);
}

/* Temperature Display */
.temperature-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(224, 247, 250, 0.05);
    border: 1px solid rgba(224, 247, 250, 0.2);
    border-radius: 0.5rem;
}

.temp-value {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: #4dd0e1;
}

.temp-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Ice Social */
.ice-social-link {
    background: rgba(224, 247, 250, 0.1);
    border: 1px solid rgba(224, 247, 250, 0.3);
}

.ice-social-link:hover {
    background: linear-gradient(135deg, #e0f7fa 0%, #4dd0e1 100%);
    border-color: transparent;
    color: #1a237e;
}
