
body {
    background-color: #0a0a0a;
    color: #f1f5f9;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

/* Sidebar */
.sidebar {
    width: 250px;
    position: fixed;
    height: 100vh;
    background-color: #111111;
    padding: 30px 20px;
    box-shadow: 4px 0 12px rgba(0, 240, 255, 0.1);
}

.sidebar h2 {
    color: #00F0FF;
    font-size: 20px;
    margin-bottom: 30px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    color: #e2e8f0;
    padding: 10px 0;
    font-size: 14px;
    transition: color 0.3s ease;
}

.sidebar li:hover {
    color: #00F0FF;
}

.sidebar .subtitle {
    margin-top: 25px;
    font-weight: bold;
    color: #00F0FF;
}

/* Main layout */
.main {
    margin-left: 270px;
    padding: 50px;
    background-color: #0a0a0a;
}

/* Header */
header {
    margin-bottom: 30px;
}

header h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #ffffff;
}

header p {
    margin: 0 0 12px;
    color: #a1a1aa;
}

header input[type="text"] {
    padding: 14px;
    width: 100%;
    max-width: 480px;
    border-radius: 10px;
    border: none;
    background-color: #1c1c1f;
    color: white;
    font-size: 15px;
    outline: none;
    margin-top: 10px;
}

.auth-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 16px;
}

.auth-buttons button {
    background-color: transparent;
    border: 2px solid #00F0FF;
    color: #00F0FF;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-buttons button:hover {
    background-color: #00F0FF;
    color: #0a0a0a;
}

/* Tool Cards */
.streamer-tools {
    margin-top: 10px;
    margin-bottom: 40px;
}
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}
.tool-card {
    background-color: #111111;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
    transition: transform 0.2s ease;
}
.tool-card:hover {
    transform: translateY(-5px);
}
.tool-card h4 {
    margin: 0 0 10px;
    color: #ffffff;
}
.tool-card p {
    font-size: 14px;
    color: #cbd5e1;
}
.tool-card button {
    margin-top: 12px;
    padding: 8px 14px;
    background-color: #00F0FF;
    color: #0a0a0a;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}
.tool-card button:hover {
    background-color: #00c9d6;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 20px;
}
.gallery-item {
    background-color: #111111;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
    transform: scale(1.025);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}
.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.03);
}
.gallery-tools-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    padding: 10px 10px 0 0;
    color: #a1a1aa;
}
.gallery-tools-right .tag-label {
    background-color: #00F0FF;
    color: #0a0a0a;
    font-weight: bold;
    padding: 2px 10px;
    font-size: 10px;
    border-radius: 20px;
    text-transform: uppercase;
}
.prompt {
    font-size: 12px;
    padding: 0 12px;
    color: #e2e8f0;
    margin-top: 6px;
}

.user-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.user-name {
    color: #00F0FF;
    font-weight: 600;
}

.avatar-circle {
    background-color: #00F0FF;
    color: #0a0a0a;
    font-weight: bold;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    box-shadow: 0 0 6px rgba(0, 240, 255, 0.6);
}
