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

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

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    * {
        cursor: url('cursor-small.png'), auto;
    }
}

body {
    font-family: 'Cochin Roman', serif;
    background: #000000 url('files/background2.jpg') no-repeat center center fixed;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    padding: 20px 0;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 550px;
    width: 90%;
    padding: 40px 30px 80px 30px;
    background: url('files/menu box overlay.png') no-repeat center center;
    background-size: 100% 100%;
    backdrop-filter: blur(5px) brightness(1.3);
    -webkit-backdrop-filter: blur(5px) brightness(1.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    overflow: visible;
    min-height: 400px;
}

header {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

.title-wrapper {
    position: relative;
    display: inline-block;
}

.main-title {
    font-size: 3rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: lowercase;
}

.subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 300;
    margin: 0;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Badge Styles */
.badge {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s ease;
}

.badge img {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.badge.beta {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(100, 100, 100, 0.25);
    color: rgba(180, 180, 180, 0.8);
}

.badge.beta:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
}

/* Tooltip */
.badge .tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    padding: 0.6rem 0.8rem;
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.02rem;
    text-transform: none;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 100;
}

.badge .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(15, 15, 15, 0.95);
}

.badge:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.content {
    margin: 0;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.social-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

.social-link .submenu {
    position: absolute;
    top: 70px; /* Increased top position */
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    padding: 8px;
    min-width: 140px;
    max-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 50;
}

.social-link:hover .submenu,
.social-link.active .submenu {
    opacity: 1;
    visibility: visible;
    top: 75px; /* Increased top position on hover */
}

.submenu-item {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    margin: 2px 0;
    transition: all 0.3s ease;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

.submenu-item:hover {
    transform: scale(1.05);
    background: rgba(0, 0, 0, 0.95);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
}

.submenu-label {
    color: #ffffff;
    font-weight: 700;
    margin-right: 5px;
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #8b0000;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .container {
        padding: 35px 25px 60px 25px;
        width: 95%;
    }

    header {
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        font-size: 2rem;
        width: 45px;
        height: 45px;
    }

    .social-link .submenu {
        top: 60px;
    }

    .social-link:hover .submenu {
        top: 65px;
    }

    .submenu-item {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px 0;
    }

    .main-title {
        font-size: 2rem;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: 1rem;
        letter-spacing: 0.3px;
    }

    .container {
        padding: 30px 20px 50px 20px;
        width: 95%;
        min-height: 350px;
    }

    header {
        margin-top: 15px;
        margin-bottom: 25px;
    }

    .social-links {
        gap: 12px;
        flex-wrap: wrap;
    }

    .social-link {
        font-size: 1.8rem;
        width: 40px;
        height: 40px;
    }

    .social-link .submenu {
        top: 55px;
        min-width: 120px;
    }

    .social-link:hover .submenu {
        top: 60px;
    }

    .submenu-item {
        font-size: 0.65rem;
        padding: 4px 8px;
    }

    .toast {
        bottom: 20px;
        font-size: 0.9rem;
        padding: 12px 24px;
    }
}

@media (max-width: 360px) {
    .main-title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .container {
        padding: 25px 15px 40px 15px;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        font-size: 1.6rem;
        width: 36px;
        height: 36px;
    }

    .submenu-item {
        font-size: 0.6rem;
        padding: 3px 6px;
    }
}
/* Cache buster: 1764486793 */

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('files/visual effect.jpg');
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}