.krusty-krab {
    width: 100px;
    height: 100px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.2s;
    margin-left: 10px;
}

.krusty-krab:hover {
    transform: scale(1.1);
}

.fish-button {
    display: block;
    margin: 20px auto;
    padding: 15px 30px;
    background: linear-gradient(45deg, #4169E1, #1E90FF);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.fish-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.no-fish-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: red;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}

.walter-white {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: auto;
    z-index: 1001;
    display: none;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.c00lkidd-mode .project-card,
.c00lkidd-mode .like-card,
.c00lkidd-mode .follower-card,
.c00lkidd-mode h1,
.c00lkidd-mode h2,
.c00lkidd-mode h3,
.c00lkidd-mode p {
    position: relative;
}

.c00lkidd-mode .project-card::after,
.c00lkidd-mode .like-card::after,
.c00lkidd-mode .follower-card::after,
.c00lkidd-mode h1::after,
.c00lkidd-mode h2::after,
.c00lkidd-mode h3::after,
.c00lkidd-mode p::after {
    display: none;
}

.c00lkidd-button {
    display: block;
    margin: 20px auto;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(255,0,0,0.3);
}

.c00lkidd-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,0,0,0.5);
}

.reagan-portrait {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: auto;
    z-index: 999;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px auto;
    max-width: 900px;
    padding: 0 20px;
}

.button-grid button {
    width: 100%;
}

.presidents-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 999;
    background: rgba(255,255,255,0.9);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.presidents-dropdown {
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 4px;
    background: white;
    border: 1px solid #ccc;
}

.president-image {
    width: 100px;
    height: auto;
    cursor: pointer;
    margin: 5px 0;
    transition: transform 0.2s;
    display: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.president-image:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.cidy-container {
    text-align: center;
    margin: 20px 0;
}

.cidy-link {
    text-decoration: none;
    color: inherit;
}

.cidy-image {
    width: 150px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.2s;
}

.cidy-image:hover {
    transform: scale(1.05);
}

.ban-hammer-cursor {
    cursor: url('/Ban_Hammer.webp') 15 15, auto !important;
}

.take-chance-button {
    display: block;
    margin: 20px auto;
    padding: 15px 30px;
    background: linear-gradient(45deg, #FF69B4, #4B0082);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.take-chance-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.random-cube {
    position: fixed;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff);
    animation: spin 2s linear infinite;
    pointer-events: none;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ban-button {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s;
}

.ban-button:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #cc0000, #990000);
}

.ban-hammer {
    pointer-events: none;
    position: fixed;
    z-index: 10000;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    display: none;
}

.mascot {
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: transform 0.2s;
    object-fit: contain;
}

#uncle-samsonite {
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: transform 0.2s, filter 0.3s;
    object-fit: contain;
}

#uncle-samsonite:hover {
    transform: scale(1.1);
    filter: brightness(1.2) contrast(1.2);
}