/* 共通のフォントと色合い */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
body {
    font-family: 'Anton', sans-serif;
    background: black;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* 見出しスタイル */
h1 {
    font-size: 3rem;
    color: #00ff99;
    text-shadow: 0 0 10px rgba(0, 255, 153, 0.8);
}

h2 {
    font-size: 2rem;
    color: #ff9900;
}

/* リンクの基本設定 */
a {
    color: #00ff99;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #ff9900;
}

/* コンテンツボックス */
.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}
/* 🔥 背景エフェクト（共通） */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -2;
    opacity: 0.7; /* 透過度 */
    filter: brightness(0.5) contrast(1.3) blur(1px);
}

/* 粒子エフェクト用のCanvas */
#particleCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}
