* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    min-height: 100vh;
}

.header {
    background-color: #ff3b3b;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    color: white;
    position: relative;
}

.header-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: normal;
}

.back-btn {
    color: white;
    background: none;
    border: none;
    padding: 5px;
    font-size: 24px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-container {
    text-align: center;
    padding: 30px 0;
    width: 120px;
    height: 120px;
    margin: 20px auto;
    background: #8B1A1A;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.logo-text {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(135deg, #FFD700, #DAA520);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transform: perspective(500px) rotateX(10deg);
    letter-spacing: 2px;
}

.logo-number {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #FFD700, #DAA520);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 5px;
    transform: perspective(500px) rotateX(-5deg);
}

.bottom-links {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
}

.bottom-links a {
    color: #ff3b3b;
    text-decoration: none;
    font-size: 14px;
}

