/* Font Face */
@font-face {
    font-family: "FRIZON";
    src:
            url('../../../fonts/Frizon.woff2') format('woff2'),
            url('../../../fonts/Frizon.woff') format('woff'),
            url('../../../fonts/Frizon.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
  --SyFu-Neutral-light: #f7f7f7;
  --SyFu-Dark:#0D1B2B;
}

/* Body Styles */
body {
    position: relative;
    padding-top: 0;
    font-family: 'Noto Sans JP', sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    background: #0a0a0a;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Main Container */
.main-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
}

/* Main Content */
.main-content {
    padding: 0;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    color: #000;
}

.btn-secondary {
    background: transparent;
    color: var(--SyFu-Neutral-light);
    border: 1px solid var(--SyFu-Neutral-light);
}