body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #141b24 100%);
    color: #f1f1f1;
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    background: rgba(25,30,37,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(110,199,45,0.1);
    border-radius: 28px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.4),
        0 8px 32px rgba(110,199,45,0.08),
        inset 0 1px 0 rgba(255,255,255,0.05);
    padding: 56px 48px 48px 48px;
    min-width: 380px;
    text-align: center;
    max-width: 440px;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(110,199,45,0.03) 0%, 
        transparent 50%, 
        rgba(110,199,45,0.02) 100%);
    border-radius: 28px;
    pointer-events: none;
}

.main-url {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1.2px;
    background: linear-gradient(135deg, #6ec72d 0%, #8ed653 50%, #6ec72d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    position: relative;
    z-index: 1;
}

.main-url::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #6ec72d, transparent);
    border-radius: 2px;
}

.slogans {
    margin-bottom: 40px;
    position: relative;
}

.slogans .slogan {
    font-size: 1.25rem;
    margin: 0 0 24px 0;
    color: #e4e4e7;
    font-weight: 400;
    line-height: 1.6;
    transition: all .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 12px 20px;
    border-radius: 16px;
    position: relative;
    font-style: italic;
    border-left: 3px solid transparent;
    background: linear-gradient(135deg, rgba(110,199,45,0.02) 0%, rgba(110,199,45,0.01) 100%);
}

.slogans .slogan::before {
    content: '"';
    position: absolute;
    left: 8px;
    top: 8px;
    font-size: 1.8rem;
    color: rgba(110,199,45,0.3);
    font-weight: bold;
    line-height: 1;
}

.slogans .slogan::after {
    content: '"';
    position: absolute;
    right: 8px;
    bottom: 8px;
    font-size: 1.8rem;
    color: rgba(110,199,45,0.3);
    font-weight: bold;
    line-height: 1;
}

.slogans .slogan:hover {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(110,199,45,0.08) 0%, rgba(110,199,45,0.04) 100%);
    transform: translateY(-3px) scale(1.02);
    border-left-color: #6ec72d;
    box-shadow: 
        0 8px 32px rgba(110,199,45,0.15),
        0 4px 16px rgba(110,199,45,0.1);
}

.slogans .slogan:hover::before,
.slogans .slogan:hover::after {
    color: #6ec72d;
    text-shadow: 0 0 8px rgba(110,199,45,0.4);
}

.slogans .slogan:last-child {
    margin-bottom: 0;
}

.slogans .slogan:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.slogans .slogan:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

button {
    flex: 1 1 0;
    padding: 16px 24px;
    background: linear-gradient(135deg, #6ec72d 0%, #5cb126 50%, #6ec72d 100%);
    color: #0f1419;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    box-shadow: 
        0 6px 24px rgba(110, 199, 45, 0.25),
        0 2px 8px rgba(110, 199, 45, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.2);
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    outline: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left .5s;
}

button:hover::before {
    left: 100%;
}

button:hover, button:focus {
    background: linear-gradient(135deg, #5cb126 0%, #4a9b1f 50%, #5cb126 100%);
    color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(110, 199, 45, 0.35),
        0 6px 20px rgba(110, 199, 45, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

button:active {
    transform: translateY(-2px) scale(0.98);
}

@media (max-width: 500px) {
    .container { 
        padding: 32px 24px 28px 24px; 
        min-width: unset;
        margin: 20px;
    }
    .main-url { 
        font-size: 2.2rem; 
        margin-bottom: 32px;
    }
    .slogans .slogan { 
        font-size: 1.1rem; 
        margin-bottom: 16px;
    }
    .buttons { 
        gap: 12px; 
        margin-top: 32px;
    }
    button { 
        font-size: 1rem; 
        padding: 14px 20px; 
    }
}

@media (max-width: 380px) {
    .container {
        margin: 16px;
        padding: 28px 20px 24px 20px;
    }
    .main-url {
        font-size: 1.9rem;
    }
    .buttons {
        flex-direction: column;
        gap: 12px;
    }
    button {
        padding: 16px 24px;
    }
}
