* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


body {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #000000, #111111, #1a1a1a);
color: #ffffff;
}


.container {
text-align: center;
padding: 40px 20px;
max-width: 600px;
width: 100%;
}


.logo {
width: 120px;
height: 120px;
margin: 0 auto 20px;
border-radius: 50%;
/* background: #ff7900; Orange brand */
background: rgba(255, 255, 255, 0.15);
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
font-weight: bold;
letter-spacing: 2px;
color: #000000;
}


h1 {
font-size: 42px;
margin-bottom: 10px;
}


p {
font-size: 18px;
opacity: 0.9;
margin-bottom: 30px;
}


.badge {
display: inline-block;
padding: 10px 22px;
border-radius: 30px;
background: #ff7900;
color: #000000;
font-size: 14px;
letter-spacing: 1px;
text-transform: uppercase;
animation: pulse 2s infinite;
}

.contacts {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.contact-item {
    padding: 10px 16px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-item:hover {
    background: #ff7900;
    color: #000000;
    border-color: #ff7900;
}

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


footer {
margin-top: 40px;
font-size: 13px;
opacity: 0.6;
}