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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0A0A0B;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 500px;
    animation: slideUp 0.4s ease-out;
}

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

.blocking-card {
    background: #0A0A0B;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blocking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 20%, 
        rgba(255, 255, 255, 0.15) 50%, 
        rgba(255, 255, 255, 0.1) 80%, 
        transparent 100%);
    pointer-events: none;
}

.logo {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo svg {
    opacity: 0.8;
}

.title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.message {
    font-size: 18px;
    color: #a0a0a0;
    margin-bottom: 8px;
    line-height: 1.5;
}

.blocked-site {
    font-weight: 700;
    color: #ffffff;
    word-break: break-all;
}

.subtitle {
    font-size: 15px;
    color: #707070;
    margin-bottom: 24px;
}

.timer-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #141414;
    border: 1px solid #1a1a1a;
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.btn {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: radial-gradient(
        circle at center,
        #e8e8e8 0%,
        #d4d4d4 100%
    );
    color: #0A0A0B;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}

.btn-primary:hover {
    background: radial-gradient(
        circle at center,
        #ffffff 0%,
        #e8e8e8 100%
    );
    box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: #0A0A0B;
    color: #ffffff;
    border: 1px solid #1a1a1a;
}

.btn-secondary:hover {
    background: #141414;
    border-color: #2a2a2a;
}

.footer-text {
    font-size: 13px;
    color: #505050;
}

.footer-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    .blocking-card {
        padding: 36px 24px;
    }

    .title {
        font-size: 28px;
    }

    .message {
        font-size: 16px;
    }
}

/* Loading state */
.loading {
    opacity: 0.6;
}

