html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

@font-face {
    font-family: 'Gwent';
    src: url('../ui/font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    scrollbar-width: none;
}

body {
    background: url('../ui/fon.jpg') no-repeat center center fixed;
    font-family: 'Gwent', sans-serif;
    background-size: cover; 
    height: 100vh;
    overflow: hidden;
    cursor: url('../ui/cursor.png'), auto; 
}

.start-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 10vh;
    position: relative;
}

.logo {
    width: 400px;
    margin-bottom: 70px; 
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.3)); 
    animation: fadeInDown 0.8s ease;
}

.main-menu-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease;
}

.gold-text {
    background: linear-gradient(135deg, #a57c2c 0%, #cfaa4a 45%, #b58a2a 80%, #e5c168 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4), 0 0 5px rgba(165, 124, 44, 0.3);
}

.gold-text-muted {
    background: linear-gradient(135deg, #b8923c 0%, #cfaa5a 45%, #c49a3a 80%, #e0bc68 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.3), 0 0 3px rgba(165, 124, 44, 0.2);
}

.menu-btn {
    background: none;
    border: none;
    padding: 8px;
    font-size: 25px;
    font-family: 'Gwent', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: url('../ui/cursor_hover.png'), pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
    width: 160px;
}

.menu-btn {
    background: linear-gradient(135deg, #a57c2c 0%, #cfaa4a 45%, #b58a2a 80%, #e5c168 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4), 0 0 5px rgba(165, 124, 44, 0.3);
}

.menu-btn::before,
.menu-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cfaa4a, #e5c168, #cfaa4a, transparent);
    transition: width 0.4s ease;
}

.menu-btn::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.menu-btn::after {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.menu-btn:hover::before,
.menu-btn:hover::after {
    width: 100%;
}

.menu-btn:hover {
    scale: 1.03;
}

.menu-btn:active {
    transform: scale(1.1);
}

@keyframes fadeOutUp {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-50px); }
}
    
@keyframes fadeOutDown {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(50px); }
}
    
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
    
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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