/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a;
    color: #f5f5f5;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #222;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #00ffc3;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #00ffc3;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff0066;
}

/* Social Icons */
.social-icons {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icons a img {
    width: 40px;
    height: 40px;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.social-icons a img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1557683316-973673baf926') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    margin-bottom: 20px;
    animation: slideIn 1s ease-in-out;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

/* Sections */
section {
    padding: 60px 0;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    text-align: center;
    color: #ff0066;
    margin-bottom: 40px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.grid-item {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-10px);
}

/* Download Button */
.download-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff6b6b, #ff9472);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 105, 135, 0.5);
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: linear-gradient(45deg, #ff9472, #ff6b6b);
    box-shadow: 0 6px 20px rgba(255, 105, 135, 0.7);
    transform: scale(1.05);
}

.download-btn:active {
    transform: scale(0.98);
}

/* View All Databases */
.view-all {
    text-align: center;
    margin-top: 20px;
}

.view-all a {
    color: #00ffc3;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.view-all a:hover {
    color: #ff0066;
}

/* Shitposting Section */
#shitpost-area {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
}

textarea {
    width: 100%;
    height: 150px;
    background-color: #333;
    color: #f0f0f0;
    border: 2px solid #555;
    border-radius: 10px;
    padding: 15px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

button {
    width: 100%;
    padding: 15px;
    background-color: #ff0066;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #ff3366;
}

#shitpost-list {
    margin-top: 30px;
}

.shitpost-item {
    background-color: #444;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 5px solid #ff0066;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: #222;
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid #ff0066;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Admin Panel Styles */
.login-container, .admin-dashboard {
    width: 300px;
    margin: 100px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #5cb85c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #4cae4c;
}

p a {
    color: #d9534f;
    text-decoration: none;
}