/* css/style.css */
body {
    background-color: #1a1c1e;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}
.header {
    background: linear-gradient(90deg, #5865F2, #4752C4);
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 800;
}
.header p {
    font-size: 1.2em;
    opacity: 0.9;
}
.container {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.btn {
    background-color: #5865F2;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn:hover {
    background-color: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}
.guild-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.guild-card {
    background-color: #2b2d31;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #1e1f22;
}
.guild-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    border-color: #5865F2;
}
.guild-icon {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.guild-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #5865F2;
    color: white;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}
.setting-group {
    background: #2b2d31;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #1e1f22;
}
input[type="text"], select {
    padding: 12px;
    width: 100%;
    max-width: 100%;
    background-color: #1e1f22;
    border: 1px solid #111;
    color: white;
    border-radius: 6px;
    margin-top: 10px;
    box-sizing: border-box;
}
input[type="checkbox"] {
    transform: scale(1.5);
    margin-right: 10px;
}
label {
    display: flex;
    align-items: center;
    font-size: 1.1em;
    cursor: pointer;
}


