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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    padding: 20px 0;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 136, 0.03) 2px, rgba(0, 255, 136, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 212, 255, 0.03) 2px, rgba(0, 212, 255, 0.03) 4px);
    pointer-events: none;
}

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

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    padding: 20px;
    margin: auto;
}

.content {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 60px 80px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
                0 0 100px rgba(0, 255, 136, 0.1),
                inset 0 0 50px rgba(0, 212, 255, 0.05);
    text-align: center;
    animation: slideIn 0.8s ease-out;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    margin-bottom: 50px;
}

.logo-image {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.led-dot {
    animation: ledBlink 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px currentColor);
}

.led-1 { animation-delay: 0s; }
.led-2 { animation-delay: 0.2s; }
.led-3 { animation-delay: 0.4s; }
.led-4 { animation-delay: 0.6s; }
.led-5 { animation-delay: 0.8s; }

@keyframes ledBlink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}

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

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.8));
    }
}

@keyframes colorShift {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.5));
    }
    33% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
    }
    66% {
        filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5));
    }
}

.title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 40px 0 25px;
    font-weight: 600;
}

.description {
    font-size: 1.3rem;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.time-box {
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 50%, #ff00ff 100%);
    border-radius: 15px;
    padding: 30px 25px;
    min-width: 140px;
    flex: 1;
    max-width: 180px;
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.4), 0 0 50px rgba(0, 212, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.time-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.time-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.6), 0 0 60px rgba(0, 212, 255, 0.4);
}

.time {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.label {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.contact {
    margin: 50px 0;
    padding: 35px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

.contact p {
    color: #495057;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.services-hint {
    margin-top: 20px;
    font-size: 1.15rem;
    color: #666;
    font-weight: 500;
}

.email {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.email:hover {
    color: #00ff88;
    text-decoration: underline;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #00d4ff;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

.social-icon:hover {
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4), 0 0 30px rgba(0, 212, 255, 0.3);
    border-color: transparent;
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }

    .content {
        padding: 40px 25px;
    }

    .logo-image {
        max-width: 300px;
    }

    .title {
        font-size: 1.8rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .timer {
        gap: 15px;
        margin: 40px 0;
    }

    .time-box {
        min-width: 90px;
        max-width: 120px;
        padding: 20px 15px;
    }

    .time {
        font-size: 2.2rem;
    }

    .label {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .contact {
        padding: 25px;
    }

    .contact p {
        font-size: 1rem;
    }

    .email {
        font-size: 1.2rem;
    }

    .services-hint {
        font-size: 1rem;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 15px;
        max-width: 100%;
    }

    .content {
        padding: 30px 20px;
    }

    .logo-image {
        max-width: 220px;
    }

    .title {
        font-size: 1.4rem;
        margin: 25px 0 15px;
    }

    .description {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .timer {
        gap: 10px;
        margin: 30px 0;
    }

    .time-box {
        min-width: 75px;
        max-width: 95px;
        padding: 15px 10px;
    }

    .time {
        font-size: 1.8rem;
    }

    .label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .contact {
        padding: 20px;
        margin: 35px 0;
    }

    .contact p {
        font-size: 0.95rem;
    }

    .email {
        font-size: 1.1rem;
    }

    .services-hint {
        font-size: 0.9rem;
        margin-top: 15px;
    }

    .social-links {
        gap: 12px;
        margin-top: 30px;
    }

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

    .social-icon svg {
        width: 22px;
        height: 22px;
    }
}