@font-face {
    font-family: 'TaffyRegular';
    src: url('TaffyRegular.ttf') format('truetype');
}

* {
    cursor: url('botl.webp'), auto;
}

a, button, .social-item a {
    cursor: url('cursor.png'), pointer !important;
}

body {
    background-image: url('bg.png');
    background-repeat: repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.top-header, .bottom-footer, .side-left, .side-right {
    position: fixed;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.top-header {
    background-image: url('top.webp');
    height: 150px;
    width: 100%;
    top: 0;
    z-index: 99;
}

.bottom-footer {
    background-image: url('bottom.webp');
    height: 150px;
    width: 100%;
    bottom: 0;
    z-index: 99;
}

.side-left {
    background-image: url('side1.webp');
    width: 150px;
    height: 100%;
    left: 0;
    z-index: 100;
    transform: scaleX(-1); 
}

.side-right {
    background-image: url('side1.webp');
    width: 150px;
    height: 100%;
    right: 0;
    z-index: 100;
}

.main-container {
    position: relative; 
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-border {
    width: 460px;
    height: auto;
    display: block;
}

.socials-wrapper {
    position: absolute;
    bottom: 18%;
    display: flex;
    gap: 33px; 
    justify-content: center;
    width: 100%;
    transform: translateX(-49px); 
}

.social-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-item a:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 45px;
    height: auto;
}

.social-text {
    color: #FFDFFF; 
    font-family: 'TaffyRegular', sans-serif;
    font-size: 14px;
    margin-top: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.cbox-wrapper {
    position: fixed;
    bottom: 120px;
    right: 60px;
    width: 180px;
    background: #FFEAF3;
    border: 3px solid #FFDFFF;
    border-radius: 15px;
    padding: 8px;
    z-index: 101;
    box-shadow: 0 4px 10px rgba(255, 223, 255, 0.5);
}

.cbox-title {
    font-family: 'TaffyRegular', sans-serif;
    color: #FFDFFF;
    text-align: center;
    font-size: 18px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 0px white;
}

.cbox-wrapper iframe {
    border-radius: 10px;
    border: 1px solid #FFDFFF;
}

.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}