* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Marker Felt', sans-serif;
    background: linear-gradient(45deg, #ff00ff, #00ff00, #ff0000, #ffff00, #00ffff);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.rainbow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
    background-size: 1800% 1800%;
    animation: rainbow 18s ease infinite;
    opacity: 0.3;
    z-index: -1;
}

@keyframes rainbow {
    0% { background-position: 0% 82%; }
    50% { background-position: 100% 19%; }
    100% { background-position: 0% 82%; }
}

.header {
    text-align: center;
    padding: 20px;
    padding-top: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 5px solid #ff00ff;
    overflow: visible;
    min-height: 300px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    margin-bottom: 50px;
}

.header marquee {
    display: block;
    height: 150px;
    overflow: visible;
}

.header h1 {
    font-size: 120px;
    color: #ffff00;
    text-shadow: 5px 5px 0 #ff00ff, 10px 10px 0 #00ffff;
    transform: rotate(-5deg);
    position: relative;
    z-index: 1;
    display: inline-block;
    line-height: 1;
}

.blink {
    animation: blink 0.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.subtitle {
    margin-top: 50px;
}

.glitch {
    position: relative;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff, 0.025em 0.04em 0 #fffc00;
    animation: glitch 725ms infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 500ms infinite;
    clip: rect(44px, 450px, 56px, 0);
    transform: translate(-3px, -3px);
}

.glitch::after {
    animation: glitch-2 500ms infinite;
    clip: rect(44px, 450px, 56px, 0);
    transform: translate(3px, 3px);
}

@keyframes glitch {
    0% { text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff, 0.025em 0.04em 0 #fffc00; }
    15% { text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff, 0.025em 0.04em 0 #fffc00; }
    16% { text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff, -0.05em -0.05em 0 #fffc00; }
    49% { text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff, -0.05em -0.05em 0 #fffc00; }
    50% { text-shadow: 0.025em 0.05em 0 #00fffc, 0.05em 0 0 #fc00ff, 0 -0.05em 0 #fffc00; }
    99% { text-shadow: 0.025em 0.05em 0 #00fffc, 0.05em 0 0 #fc00ff, 0 -0.05em 0 #fffc00; }
    100% { text-shadow: -0.025em 0 0 #00fffc, -0.025em -0.025em 0 #fc00ff, -0.025em -0.05em 0 #fffc00; }
}

.main-doeg {
    text-align: center;
    padding: 50px;
    position: relative;
    transform: skewY(-3deg);
    margin: 50px 0;
}

.main-doeg > * {
    transform: skewY(3deg);
}

.doeg-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 10px solid #ff00ff;
    box-shadow: 0 0 50px #ff00ff, 0 0 100px #00ff00;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.doeg-img:hover {
    animation: spin 0.5s linear infinite !important;
}

.spin-hover:hover {
    animation: spin 0.5s linear infinite !important;
}

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

.speech-bubble {
    position: absolute;
    top: 50%;
    left: calc(50% + 180px);
    transform: translateY(-50%) rotate(10deg);
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    border: 3px solid #000;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #000;
}

.speech-bubble p {
    font-size: 24px;
    font-weight: bold;
    color: #ff00ff;
}

.ticker-wrap {
    width: 110%;
    margin-left: -5%;
    overflow: hidden;
    background: #ff0000;
    padding: 15px 0;
    border-top: 8px solid #ffff00;
    border-bottom: 8px solid #ffff00;
    transform: rotate(-2deg) translateY(-20px);
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(255,0,0,0.5);
}

.ticker {
    display: flex;
    animation: ticker 20s linear infinite;
}

.ticker span {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    padding: 0 50px;
    white-space: nowrap;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tokenomics {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 50px;
    margin: 50px auto;
    max-width: 1200px;
    border: 5px dashed #00ff00;
    transform: rotate(-2deg);
}

.wobble {
    animation: wobble 2s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

.rainbow-text {
    background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-text 3s ease infinite;
    font-size: 48px;
}

@keyframes rainbow-text {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(360deg); }
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.token-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: white;
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.3s;
    border: 3px solid #ffff00;
}

.token-box:hover {
    transform: perspective(1000px) rotateY(180deg);
}

.big-number {
    font-size: 48px;
    font-weight: bold;
    display: block;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.about {
    text-align: center;
    padding: 80px 30px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
    margin: 50px 0;
    position: relative;
    border: 8px dashed #ffff00;
    border-radius: 30px;
    transform: rotate(-1deg);
}

.about::before {
    content: "🧠❌ 🧠❌ 🧠❌";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    animation: float 3s ease-in-out infinite;
}

.upside-down {
    transform: rotate(180deg);
    font-size: 72px;
    color: #00ff00;
    text-shadow: 5px 5px 0 #ff00ff, 10px 10px 0 #00ffff;
    margin: 40px 0;
    display: inline-block;
    animation: wobble 3s ease-in-out infinite;
}

.about-content {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.9), rgba(0, 255, 255, 0.9));
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.8), inset 0 0 50px rgba(255, 0, 255, 0.3);
    transform: rotate(1deg);
    border: 3px solid #ffff00;
}

.about-content p {
    margin: 20px 0;
    font-size: 24px;
    color: #000;
    text-shadow: 2px 2px 0 #fff, 3px 3px 0 #ffff00;
    transform: rotate(random(-2deg, 2deg));
    font-weight: bold;
}

.about-content p:nth-child(odd) {
    color: #000;
}

.about-content p:nth-child(even) {
    color: #fff;
    text-shadow: 2px 2px 0 #000, 3px 3px 0 #ff00ff;
}

.shake-on-hover:hover {
    animation: shake-intense 0.3s;
}

.shake-on-hover:hover .about-content {
    animation: glitch 0.3s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.comic-sans {
    font-family: 'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Marker Felt', sans-serif !important;
}

.big-text {
    font-size: 48px !important;
    color: #ff00ff;
    text-shadow: 3px 3px 0 #ffff00, 6px 6px 0 #00ffff;
    animation: pulse 2s infinite;
    display: inline-block;
    transform: skew(-5deg);
}

.small-doeg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #00ff00;
    margin-top: 20px;
}

.float-animation {
    animation: float-diagonal 4s ease-in-out infinite;
}

@keyframes float-diagonal {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

.roadmap {
    padding: 50px;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    margin: 50px 0;
}

.roadmap-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.roadmap-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 3px solid #000;
    transform: rotate(-5deg);
}

.roadmap-item:nth-child(even) {
    transform: rotate(5deg);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1) rotate(-5deg); }
    50% { transform: scale(1.05) rotate(-5deg); }
    100% { transform: scale(1) rotate(-5deg); }
}

.roadmap-item:nth-child(even).pulse {
    animation: pulse-even 2s infinite;
}

@keyframes pulse-even {
    0% { transform: scale(1) rotate(5deg); }
    50% { transform: scale(1.05) rotate(5deg); }
    100% { transform: scale(1) rotate(5deg); }
}

.buy-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 50px;
    background: #ffff00;
    border-radius: 30px;
}

.rainbow-border {
    border: 10px solid;
    border-image: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3) 1;
}

.mega-text {
    font-size: 64px;
    text-align: center;
    color: #ff00ff;
    text-shadow: 5px 5px 0 #00ff00;
    transform: skew(-10deg);
}

.buy-steps {
    font-size: 24px;
    color: #000;
    margin: 30px 0;
    padding-left: 30px;
}

.buy-steps li {
    margin: 15px 0;
    transform: rotate(random(-3deg, 3deg));
}

.ca-address-top {
    text-align: center;
    padding: 20px;
    margin: 20px 0;
    cursor: pointer;
    transition: transform 0.2s;
}

.ca-address-top:hover {
    transform: scale(1.05) rotate(2deg);
}

.ca-address-top code {
    font-family: 'Comic Sans MS', 'Comic Sans', monospace;
    font-size: 18px;
    font-weight: bold;
    color: #ffff00;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    padding: 15px 25px;
    border-radius: 15px;
    border: 3px solid #00ff00;
    display: inline-block;
    text-shadow: 2px 2px 0 #000;
    box-shadow: 0 0 20px rgba(255,0,255,0.5);
    word-break: break-all;
    transform: rotate(-2deg);
}

.ca-section {
    text-align: center;
    padding: 80px 50px;
    background: linear-gradient(135deg, #000, #ff00ff, #000);
    color: #fff;
    margin: 100px -30px;
    transform: perspective(1000px) rotateY(5deg) rotateX(-2deg);
    position: relative;
    z-index: 10;
    box-shadow: 0 0 100px rgba(255,0,255,0.5);
}

.ca-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255,0,255,0.2));
    transform: skewY(3deg);
}

.ca-box {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    padding: 30px;
    border-radius: 20px;
    margin: 20px auto;
    max-width: 600px;
    border: 5px solid #ffff00;
}

.ca-box code {
    font-size: 20px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 10px;
    border-radius: 10px;
    display: block;
    margin: 10px 0;
    word-break: break-all;
}

.copy-btn {
    background: #00ff00;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transform: rotate(-3deg);
    transition: transform 0.3s;
}

.copy-btn:hover {
    transform: rotate(3deg) scale(1.1);
    background: #ff00ff;
    color: #fff;
}

.shake {
    animation: shake 0.5s infinite;
}

.socials {
    text-align: center;
    padding: 80px 30px;
    background: rgba(0, 0, 0, 0.8);
    margin: 100px 0;
    position: relative;
    transform: rotate(2deg);
    border-radius: 50px 0 50px 0;
    overflow: hidden;
}

.socials::after {
    content: "🚀🚀🚀";
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 100px;
    opacity: 0.1;
    transform: rotate(-45deg);
}

.spin-text {
    font-size: 48px;
    color: #00ff00;
    animation: spin 2s linear infinite;
    display: inline-block;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 40px;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    min-width: 200px;
    font-size: 24px;
    font-weight: bold;
    transform: rotate(-5deg);
    transition: transform 0.3s;
}

.social-btn svg {
    width: 50px;
    height: 50px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    margin-bottom: 10px;
}

.social-btn-top {
    padding: 30px;
    min-width: auto;
    width: 80px;
    height: 80px;
}

.social-btn-top svg {
    width: 100px;
    height: 100px;
    margin-bottom: 0;
}

.telegram-btn {
    background: linear-gradient(45deg, #0088cc, #00ccff);
}

.twitter-btn {
    background: linear-gradient(45deg, #1da1f2, #00acee);
}

.dexscreener-btn {
    background: linear-gradient(45deg, #ff00ff, #ff00aa);
}

.wobble-hover:hover {
    animation: wobble-intense 0.3s;
}

@keyframes wobble-intense {
    0%, 100% { transform: rotate(-5deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(5deg); }
}

.small-text {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
}

.floating-doegs {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.floating-doeg {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.3;
    border-radius: 50%;
}

.doeg-1 {
    top: 10%;
    left: 10%;
    animation: float-random-1 10s ease-in-out infinite;
}

.doeg-2 {
    top: 60%;
    right: 15%;
    animation: float-random-2 8s ease-in-out infinite;
}

.doeg-3 {
    bottom: 20%;
    left: 50%;
    animation: float-random-3 12s ease-in-out infinite;
}

@keyframes float-random-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(100px, -50px) rotate(120deg); }
    66% { transform: translate(-50px, 100px) rotate(240deg); }
}

@keyframes float-random-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-100px, 100px) rotate(180deg); }
}

@keyframes float-random-3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, -100px) rotate(90deg); }
    50% { transform: translate(-100px, -50px) rotate(180deg); }
    75% { transform: translate(-50px, 50px) rotate(270deg); }
}

footer {
    background: linear-gradient(45deg, #000, #ff00ff, #000, #00ff00, #000);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    color: #fff;
    padding: 50px 30px;
    text-align: center;
    border-top: 10px solid #ff00ff;
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    margin-top: -30px;
    position: relative;
    transform: skewY(-1deg);
}

footer > * {
    transform: skewY(1deg);
}

.disclaimer {
    font-size: 10px;
    opacity: 0.7;
    margin: 10px 0;
    max-width: 800px;
    margin: 0 auto;
}

.copyright {
    font-size: 14px;
    margin-top: 20px;
    color: #00ff00;
}

marquee {
    display: block;
}

/* Gallery Section - Maximum Retardation */
.gallery-section {
    padding: 100px 20px;
    background: linear-gradient(45deg, #ff00ff, #00ff00, #ff0000, #ffff00);
    background-size: 400% 400%;
    animation: gradientShift 5s ease infinite;
    position: relative;
    overflow: hidden;
    transform: rotate(-1deg) skewX(-2deg);
    margin-left: -50px;
    margin-right: -50px;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.gallery-section > * {
    transform: rotate(1deg) skewX(2deg);
}

.gallery-section::before {
    content: "DOEG DOEG DOEG DOEG DOEG";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    font-size: 200px;
    opacity: 0.05;
    white-space: nowrap;
    animation: slide-diagonal 20s linear infinite;
}

@keyframes slide-diagonal {
    0% { transform: translate(-50%, -50%) rotate(45deg) translateX(-100%); }
    100% { transform: translate(-50%, -50%) rotate(45deg) translateX(100%); }
}

.gallery-subtitle {
    text-align: center;
    font-size: 24px;
    color: #fff;
    text-shadow: 2px 2px 0 #000;
    margin-bottom: 30px;
    animation: shake 0.5s infinite;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.gallery-grid::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,0,0.3), transparent);
    transform: translate(-50%, -50%);
    animation: pulse 3s infinite;
    pointer-events: none;
    z-index: -1;
}

.gallery-item {
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
    border: 5px solid #ffff00;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
}

.gallery-caption {
    background: rgba(0,0,0,0.9);
    padding: 15px;
    text-align: center;
}

.gallery-caption h3 {
    color: #00ff00;
    font-size: 18px;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #ff00ff;
}

.gallery-caption p {
    color: #ffff00;
    font-size: 14px;
    font-style: italic;
}

/* Gallery Item Animations */
.tilt-left {
    transform: rotate(-5deg);
}

.tilt-right {
    transform: rotate(5deg);
}

.wiggle {
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.bounce {
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.spin-slow {
    animation: spin-slow 10s linear infinite;
}

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

.gallery-item.spin-on-hover:hover {
    animation: spin 0.5s linear;
}

.gallery-item.shake-hover:hover {
    animation: shake-intense 0.3s;
}

.gallery-item.rotate-hover:hover {
    transform: rotate(180deg) scale(1.1);
}

.gallery-item.flip-hover:hover {
    transform: rotateY(180deg);
}

.gallery-item.glitch-hover:hover {
    animation: glitch-image 0.3s;
}

@keyframes glitch-image {
    0% { filter: hue-rotate(0deg); transform: translateX(0); }
    20% { filter: hue-rotate(90deg); transform: translateX(-5px); }
    40% { filter: hue-rotate(180deg); transform: translateX(5px); }
    60% { filter: hue-rotate(270deg); transform: translateX(-5px); }
    80% { filter: hue-rotate(360deg); transform: translateX(5px); }
    100% { filter: hue-rotate(0deg); transform: translateX(0); }
}

.rainbow-border-item {
    animation: rainbow-border-animation 3s linear infinite;
}

@keyframes rainbow-border-animation {
    0% { border-color: #ff0000; }
    16% { border-color: #ff7f00; }
    33% { border-color: #ffff00; }
    50% { border-color: #00ff00; }
    66% { border-color: #0000ff; }
    83% { border-color: #4b0082; }
    100% { border-color: #9400d3; }
}

.gallery-warning {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background: #ff0000;
    border: 5px dashed #ffff00;
    border-radius: 20px;
}

.gallery-warning p {
    font-size: 24px;
    color: #fff;
    text-shadow: 2px 2px 0 #000;
    font-weight: bold;
}

.gallery-warning .small-text {
    font-size: 16px;
    opacity: 0.8;
    margin-top: 10px;
}

/* Hover effects for gallery grid */
.gallery-item:hover {
    z-index: 10;
    box-shadow: 0 20px 50px rgba(255,0,255,0.5);
}

/* Random position offsets for chaos */
.gallery-item:nth-child(3n) {
    margin-top: -10px;
    transform: scale(1.1) rotate(2deg);
    z-index: 2;
}

.gallery-item:nth-child(5n) {
    margin-top: 10px;
    transform: scale(0.95) rotate(-3deg);
}

.gallery-item:nth-child(7n) {
    margin-left: -5px;
    transform: scale(1.05) rotate(1deg);
    z-index: 3;
}

.gallery-item:nth-child(11n) {
    margin-right: -5px;
    transform: scale(0.9) rotate(-2deg);
}

.gallery-item:nth-child(2n) {
    border-radius: 50px 10px 50px 10px;
}

.gallery-item:nth-child(4n) {
    border-radius: 10px 50px 10px 50px;
    box-shadow: 0 0 50px rgba(255,0,255,0.5);
}

/* Music Button */
.music-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    border: 3px solid #ffff00;
    cursor: pointer;
    z-index: 9999;
    animation: pulse 2s infinite, rotate 10s linear infinite;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-btn:hover {
    animation: shake-intense 0.3s, rotate 1s linear infinite;
    transform: scale(1.2);
}

.music-btn span {
    font-size: 30px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

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

@media (max-width: 768px) {
    /* Don't override fonts - keep desktop fonts */

    /* Header adjustments */
    .header {
        padding-top: 60px;
        min-height: 200px;
        clip-path: none;
        margin-bottom: 20px;
    }

    .header h1 {
        font-size: 60px;
    }

    .header marquee {
        height: 100px;
    }

    .subtitle {
        font-size: 20px;
        margin-top: 30px;
    }

    /* Main doeg section */
    .main-doeg {
        padding: 20px;
        transform: none;
        margin: 20px 0;
    }

    .main-doeg > * {
        transform: none;
    }

    .doeg-img {
        width: 200px;
        height: 200px;
    }

    .speech-bubble {
        position: static;
        transform: rotate(-5deg);
        margin: 20px auto;
        max-width: 250px;
    }

    .speech-bubble::after {
        display: none;
    }

    /* Typography adjustments */
    .mega-text {
        font-size: 36px;
    }

    .glitch {
        font-size: 24px;
    }

    .big-text {
        font-size: 28px !important;
    }

    .upside-down {
        font-size: 48px;
    }

    /* Sections padding */
    .tokenomics, .about, .roadmap, .buy-section, .ca-section, .socials, .gallery-section {
        padding: 30px 15px;
        margin: 30px 10px;
    }

    /* Grid layouts */
    .token-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .token-box {
        padding: 20px;
    }

    .big-number {
        font-size: 36px;
    }

    .roadmap-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Gallery mobile */
    .gallery-section {
        transform: none;
        margin-left: 0;
        margin-right: 0;
        clip-path: none;
        padding: 50px 15px;
    }

    .gallery-section > * {
        transform: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid::before {
        display: none;
    }

    .gallery-item {
        transform: none !important;
        margin: 10px 0 !important;
        border-radius: 20px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    }

    .gallery-item:nth-child(n) {
        transform: none !important;
        margin: 10px 0 !important;
        z-index: 1 !important;
    }

    .gallery-section::before {
        font-size: 100px;
    }

    /* Buy section */
    .buy-steps {
        font-size: 18px;
        padding-left: 20px;
    }

    /* Socials section */
    .socials {
        transform: none;
        border-radius: 0;
        margin: 50px 0;
        padding: 50px 20px;
    }

    .socials::after {
        display: none;
    }

    /* Social buttons */
    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .social-btn {
        width: 60px;
        height: 60px;
        padding: 15px;
    }

    .social-btn svg {
        width: 40px;
        height: 40px;
    }

    /* CA section */
    .ca-section {
        transform: none;
        margin: 50px 0;
        padding: 50px 20px;
    }

    .ca-section::before {
        display: none;
    }

    .ca-box {
        padding: 20px;
        margin: 20px 10px;
    }

    .ca-box code {
        font-size: 14px;
        word-wrap: break-word;
    }

    /* Music button */
    .music-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .music-btn span {
        font-size: 24px;
    }

    /* Ticker */
    .ticker-wrap {
        width: 100%;
        margin-left: 0;
        transform: none;
        padding: 10px 0;
        border-top: 5px solid #ffff00;
        border-bottom: 5px solid #ffff00;
    }

    .ticker span {
        font-size: 18px;
        padding: 0 30px;
    }

    /* Footer */
    footer {
        padding: 30px 10px;
        clip-path: none;
        margin-top: 0;
        transform: none;
        border-top: 5px solid #ff00ff;
    }

    footer > * {
        transform: none;
    }

    .disclaimer {
        font-size: 8px;
    }

    /* About content */
    .about-content {
        padding: 20px;
    }

    .about-content p {
        font-size: 18px;
    }

    /* Floating doegs - hide on mobile for performance */
    .floating-doegs {
        display: none;
    }

    /* Rainbow text adjustment */
    .rainbow-text {
        font-size: 32px;
    }
}