* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    background: #6e48aa url('https://lh6.googleusercontent.com/proxy/sHVoEOnCuJkN3UfXf1FIEUZFLSHrU01vHVn7P1zVJ2SoENLt3HjNgrGNq2rB6S2pFbGCeeON3ap-n7e2EUCXlNXnkphb7wmtpT40hD_nW1NCAMi44QDcrGXK') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    color: #333;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(110, 72, 170, 0.7);
    z-index: -1;
}

.container {
    max-width: 1000px;
    width: 100%;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin: 20px 0;
    position: relative;
}

header {
    background: #3A3D99;
    background: linear-gradient(to bottom, #4A4DCC, #3A3D99);
    padding: 20px;
    text-align: center;
    color: white;
    border-bottom: 2px solid #2A2D7A;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content {
    padding: 25px;
    text-align: center;
}

.description {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cat-button {
    background: #FF5722;
    background: linear-gradient(to bottom, #FF784E, #FF5722);
    border: none;
    color: white;
    padding: 16px 40px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cat-button:hover {
    background: linear-gradient(to bottom, #FF5722, #E64A19);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.cat-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.image-container {
    position: relative;
    margin: 20px auto;
    max-width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ddd;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cat-image {
    max-width: 100%;
    max-height: 400px;
    border-radius: 5px;
    display: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3A3D99;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1.5s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.counter {
    font-size: 1.2rem;
    margin-top: 20px;
    color: #3A3D99;
    font-weight: bold;
    background: #f8f8f8;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    background: #37474F;
    color: #ECEFF1;
    text-align: center;
    padding: 20px;
    font-size: 1rem;
    width: 100%;
    border-top: 2px solid #2A3540;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-btn {
    padding: 10px 20px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.bluesky { 
    background: #1285FF;
}

.discord { 
    background: #5865F2;
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 20px;
    width: 60px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #3A3D99;
    transition: transform 0.3s;
}

body.dark-theme {
    background-color: #222;
    color: #f0f0f0;
}

body.dark-theme::before {
    background: rgba(34, 34, 34, 0.8);
}

body.dark-theme .container {
    background-color: #333;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

body.dark-theme .image-container {
    background: #444;
    border: 1px solid #555;
}

body.dark-theme .description {
    color: #ccc;
}

body.dark-theme .counter {
    background: #444;
    color: #6b6bbd;
}

body.dark-theme footer {
    background: #2A3540;
}

body.dark-theme .theme-toggle::before {
    transform: translateX(30px);
    background: #FF5722;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .content {
        padding: 15px;
    }
    
    .cat-button {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .image-container {
        min-height: 250px;
    }
    
    .theme-toggle {
        top: 15px;
        right: 15px;
    }
}
