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

:root {
    --primary-color: #00e5ff;
    --secondary-color: #7b2ff7;
    --accent-color: #ff2d55;
    --background-dark: #121212;
    --background-light: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --card-bg: rgba(30, 30, 30, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 229, 255, 0.2);
    --glow-color: rgba(0, 229, 255, 0.5);
}

/* 普通模式样式变量 */
.normal-mode {
    --primary-color: #4a90e2;
    --secondary-color: #6c5ce7;
    --accent-color: #e74c3c;
    --background-dark: #f5f5f5;
    --background-light: #ffffff;
    --text-primary: #333333;
    --text-secondary: rgba(0, 0, 0, 0.7);
    --card-bg: rgba(255, 255, 255, 0.9);
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --glow-color: rgba(0, 0, 0, 0.05);
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--background-dark);
    font-family: 'Segoe UI', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 229, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(123, 47, 247, 0.03) 0%, transparent 20%);
    position: relative;
    overflow-x: hidden;
}

/* 添加科技感网格背景 */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(var(--border-color) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    z-index: -1;
    opacity: 0.3;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* 添加霓虹灯效果的头像 */
.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px var(--shadow-color), 0 0 30px var(--shadow-color);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid var(--primary-color);
    filter: brightness(1.05);
}

.profile-image:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 0 25px var(--glow-color), 0 0 40px var(--glow-color);
    border-color: var(--secondary-color);
}

header {
    margin-bottom: 3rem;
    position: relative;
}

h1 {
    margin: 0;
    color: var(--text-primary);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 10px var(--shadow-color);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

section {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px var(--shadow-color);
}

h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.skills ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.skills li {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.skills li:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    text-decoration: none;
    color: var(--text-primary);
    padding: 0.7rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--shadow-color);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    section {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
}

/* 按钮组样式 */
.button-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.dance-button, .theme-button, .chat-button {
    background: linear-gradient(45deg, rgba(0, 229, 255, 0.2), rgba(123, 47, 247, 0.2));
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 0.9rem 1.6rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.dance-button:hover, .theme-button:hover, .chat-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), 0 0 15px var(--shadow-color);
    border-color: var(--primary-color);
    scale: 1.05;
}

.chat-button {
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.2), rgba(255, 20, 147, 0.2));
    border-color: rgba(255, 105, 180, 0.4);
    color: var(--text-primary);
}

.chat-button:hover {
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.3), rgba(255, 20, 147, 0.3));
    border-color: rgba(255, 105, 180, 0.7);
}

/* 为按钮添加光晕效果 */
.dance-button::after, .theme-button::after, .chat-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.dance-button:hover::after, .theme-button:hover::after, .chat-button:hover::after {
    opacity: 1;
    animation: shine 0.6s ease-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%);
        opacity: 0.8;
    }
    100% {
        transform: translateX(100%) translateY(100%);
        opacity: 0;
    }
}

.normal-mode .chat-button {
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.3), rgba(255, 20, 147, 0.3));
    color: var(--text-primary);
    border-color: rgba(255, 105, 180, 0.5);
}

.normal-mode .dance-button, .normal-mode .theme-button {
    background: linear-gradient(45deg, rgba(74, 144, 226, 0.3), rgba(108, 92, 231, 0.3));
    border-color: rgba(74, 144, 226, 0.5);
    color: var(--text-primary);
}

.normal-mode .dance-button:hover, .normal-mode .theme-button:hover {
    background: linear-gradient(45deg, rgba(74, 144, 226, 0.4), rgba(108, 92, 231, 0.4));
    border-color: rgba(74, 144, 226, 0.7);
}

.normal-mode .chat-button:hover {
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.4), rgba(255, 20, 147, 0.4));
    border-color: rgba(255, 105, 180, 0.7);
}

@media (max-width: 768px) {
    .dance-button, .theme-button, .chat-button {
        padding: 0.8rem 1.3rem;
        font-size: 1rem;
    }
    
    .button-group {
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .dance-button, .theme-button, .chat-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
        min-width: 130px;
    }
    
    .button-group {
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
    }
    
    .button-group .dance-button,
    .button-group .theme-button,
    .button-group .chat-button {
        width: 85%;
    }
}

/* 资源下载按钮样式 */
.resource-button {
    position: fixed;
    top: 20px;
    right: 280px;
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    border: none;
    border-radius: 30px;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.resource-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #8BC34A, #4CAF50);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.resource-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 15px rgba(76, 175, 80, 0.5);
    letter-spacing: 0.8px;
}

.resource-button:hover::before {
    opacity: 1;
}

.resource-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.resource-button i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.resource-button:hover i {
    transform: translateY(-2px);
}

/* 主题切换按钮样式已移至按钮组样式中 */

/* 普通模式下的网格背景调整 */
body.normal-mode::before {
    opacity: 0.1;
}

/* 普通模式下的粒子颜色调整 */
body.normal-mode #particles-js canvas {
    filter: opacity(0.5);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .server-details {
        grid-template-columns: 1fr;
    }
    
    .server-type {
        padding: 1.2rem;
    }
    
    .resource-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        right: 20px;
    }
}

@media (max-width: 600px) {
    .resource-button {
        top: 20px;
        right: 20px;
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* 当页面在跳动状态时，按钮样式也跟着变化 */
body.dancing .dance-button {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    animation: buttonPulse 2s infinite alternate;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 10px var(--shadow-color), 0 0 20px var(--shadow-color); }
    100% { box-shadow: 0 0 20px var(--glow-color), 0 0 40px var(--glow-color); }
}

/* 修改彩虹背景动画，使颜色更科技感 */
@keyframes rainbow-bg {
    0% { background-color: var(--background-dark); }
    25% { background-color: #0a192f; }
    50% { background-color: #170a29; }
    75% { background-color: #1a0a29; }
    100% { background-color: var(--background-dark); }
}

/* 修改摇摆动画，使动作更加平缓 */
@keyframes swing {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg) scale(1.05); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(5deg) scale(1.05); }
    100% { transform: rotate(0deg); }
}

/* 添加霓虹文字效果 */
@keyframes neon-text {
    0% { text-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color); }
    50% { text-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color), 0 0 40px var(--primary-color); }
    100% { text-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color); }
}

/* 修改动画应用方式 */
body.dancing {
    animation: rainbow-bg 8s ease-in-out infinite;
}

body.dancing .profile-image {
    animation: swing 3s ease-in-out infinite;
    box-shadow: 0 0 30px var(--glow-color), 0 0 50px var(--glow-color);
}

body.dancing h1 {
    animation: neon-text 2s ease-in-out infinite, swing 3s ease-in-out infinite 0.5s;
}

/* 服务器信息卡片样式 */
.server-info {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    margin: 2.5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.server-info h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.server-info h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.server-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.server-type {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

/* 服务器徽章样式 */
.server-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 12px 0 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.server-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 0 15px var(--shadow-color);
    border-color: var(--primary-color);
}

.server-type h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.server-address, .server-port {
    font-family: 'Consolas', 'Monaco', monospace;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin: 0.8rem 0;
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    overflow: auto;
    white-space: nowrap;
}

.server-address:hover, .server-port:hover {
    background-color: rgba(0, 0, 0, 0.3);
    transform: translateX(3px);
    cursor: pointer;
}

/* 复制提示样式 */
.copy-tooltip {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--background-dark);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    animation: fadeInOut 2s ease forwards;
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

.server-version {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0.8rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    display: inline-block;
    border: 1px solid var(--border-color);
}

.server-description {
    margin-top: 1.2rem;
}

.server-features {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 1rem 0;
}

.server-links {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.server-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.server-links a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

/* 资源页面样式 */
.resources-section {
    margin-top: 2rem;
}

.resource-category {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.resource-category h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.resource-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.resource-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.resource-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.resource-item.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
}

.resource-info {
    flex: 1;
}

.resource-info h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.resource-description {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.resource-size {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.download-button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 0 0 15px rgba(76, 175, 80, 0.5);
    background: linear-gradient(45deg, #45a049, #7cb342);
}

.back-button {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .resource-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .download-button {
        width: 100%;
        justify-content: center;
    }
}

/* 添加平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 添加滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* 添加选择文本样式 */
::selection {
    background: var(--primary-color);
    color: var(--background-dark);
}

/* 添加页面加载动画 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.container > * {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.container > *:nth-child(1) { animation-delay: 0.1s; }
.container > *:nth-child(2) { animation-delay: 0.2s; }
.container > *:nth-child(3) { animation-delay: 0.3s; }
.container > *:nth-child(4) { animation-delay: 0.4s; }
.container > *:nth-child(5) { animation-delay: 0.5s; }

/* 粒子背景样式 */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* 按钮组中的资源按钮样式 */
.button-group .resource-button {
    position: static;
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px var(--shadow-color);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button-group .resource-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.button-group .resource-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-color);
    letter-spacing: 0.8px;
}

.button-group .resource-button:hover::before {
    opacity: 1;
}

.button-group .resource-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.button-group .resource-button i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.button-group .resource-button:hover i {
    transform: translateY(-2px) rotate(10deg);
}

/* 响应式调整 - 资源按钮 */
@media (max-width: 768px) {
    .button-group .resource-button {
        padding: 0.7rem 1.4rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .button-group .resource-button {
        width: 80%;
        padding: 0.7rem 1rem;
    }
}

