:root {
    --bg-color: #050505;
    --accent-color: #00f2ff;
    --secondary-color: #7000ff;
    --text-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.03);
}

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

small.version{
    font-size: .5rem;
    color:gray;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

/* 背景の動的なグラデーション */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #050505 100%);
    z-index: -1;
}

header {
    text-align: center;
    padding: 80px 20px;
}

.glitch {
    font-family: 'Syncopate', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 10px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    color: var(--text-color);
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

.subtitle {
    margin-top: 15px;
    font-size: 1.1rem;
    letter-spacing: 3px;
    opacity: 0.7;
    color: var(--accent-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px;
}

/* カードのデザイン */
.tool-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tool-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 40px rgba(0, 242, 255, 0.2);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

/* ボタンのデザイン */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px var(--accent-color);
}
