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

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #030303 0%, #0a0a0a 50%, #050505 100%);
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.btek-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    position: relative;
    padding: 0.5rem 0.75rem;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btek-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: -1;
    transition: all 0.4s ease;
}

.btek-text:hover {
    color: #f0f0f0;
    transform: scale(1.03);
}

.btek-text:hover::before {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .btek-text {
        font-size: 0.9rem;
        letter-spacing: 0.03em;
        padding: 0.4rem 0.6rem;
    }
}