* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'VT323', monospace;
}

body {
    background-image: url('https://wallpapercave.com/wp/wp6923685.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #000;
    color: #0f0;
    overflow-x: hidden;
    min-height: 100vh;
}

#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.8) 80%);
    z-index: -1;
    pointer-events: none;
}

@keyframes rgb-shift {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.remix-active {
    animation: rgb-shift 5s linear infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    /* Azaltıldı */
    z-index: 1;
    min-height: 100vh;
    justify-content: center;
    /* Merkeze topla */
}

.logo-container {
    margin-bottom: 15px;
    /* Azaltıldı */
}

.logo {
    width: 150px;
    /* 250'den 150'ye düşürüldü */
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 0 30px #0f0;
    object-fit: contain;
}

.glitch-text {
    font-size: 2.5rem;
    /* 5rem'den 2.5rem'e düşürüldü */
    text-align: center;
    position: relative;
    color: #0f0;
    text-shadow: 0 0 10px #0f0;
    margin-bottom: 20px;
    /* 50'den 20'ye düşürüldü */
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
    }

    20% {
        clip: rect(62px, 9999px, 42px, 0);
    }

    40% {
        clip: rect(16px, 9999px, 78px, 0);
    }

    60% {
        clip: rect(81px, 9999px, 13px, 0);
    }

    80% {
        clip: rect(52px, 9999px, 86px, 0);
    }

    100% {
        clip: rect(93px, 9999px, 64px, 0);
    }
}

.destekciler-section {
    width: 95%;
    max-width: 1100px;
    background: rgba(0, 20, 0, 0.6);
    border: 2px solid #0f0;
    border-radius: 10px;
    padding: 15px;
    /* 30'dan 15'e düşürüldü */
    box-shadow: 0 0 15px #0f0;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    /* 3rem'den 1.8rem'e düşürüldü */
    border-bottom: 2px solid #0f0;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

/* Tree Structure */
.tree-container {
    display: flex;
    justify-content: center;
    overflow-x: auto;
}

.tree * {
    margin: 0;
    padding: 0;
}

.tree ul {
    padding-top: 20px;
    position: relative;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
}

.tree li {
    float: left;
    text-align: center;
    list-style-type: none;
    position: relative;
    padding: 10px 2px 0 2px;
    /* Daha dar */
    transition: all 0.5s;
}

.tree li::before,
.tree li::after {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    border-top: 1px solid #0f0;
    width: 50%;
    height: 20px;
}

.tree li::after {
    right: auto;
    left: 50%;
    border-left: 1px solid #0f0;
}

.tree li:only-child::after,
.tree li:only-child::before {
    display: none;
}

.tree li:only-child {
    padding-top: 0;
}

.tree li:first-child::before,
.tree li:last-child::after {
    border: 0 none;
}

.tree li:last-child::before {
    border-right: 1px solid #0f0;
    border-radius: 0 5px 0 0;
}

.tree li:first-child::after {
    border-radius: 5px 0 0 0;
}

.tree ul ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 1px solid #0f0;
    width: 0;
    height: 20px;
}

.tree li a {
    border: 1px solid #0f0;
    padding: 5px 10px;
    /* Daha dar */
    text-decoration: none;
    color: #0f0;
    font-size: 0.9rem;
    /* 1.5rem'den 0.9rem'e düşürüldü */
    display: inline-block;
    border-radius: 5px;
    transition: all 0.5s;
    background: rgba(0, 50, 0, 0.4);
}

.tree li a:hover,
.tree li a:hover+ul li a {
    background: #0f0;
    color: #000;
    box-shadow: 0 0 10px #0f0;
}

.tree li a:hover+ul li::after,
.tree li a:hover+ul li::before,
.tree li a:hover+ul::before,
.tree li a:hover+ul ul::before {
    border-color: #0f0;
}

@media screen and (max-width: 768px) {
    .glitch-text {
        font-size: 3rem;
    }

    .logo {
        width: 150px;
        height: 150px;
    }

    .tree li a {
        font-size: 1rem;
        padding: 5px 10px;
    }
}

/* Social Section */
.social-section {
    margin-top: 20px;
    /* 50'den 20'ye düşürüldü */
    text-align: center;
    background: rgba(0, 30, 0, 0.7);
    border: 1px solid #0f0;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 15px #0f0;
    width: 95%;
    max-width: 500px;
}

.contact-info {
    font-size: 1.2rem;
    /* 1.8rem'den 1.2rem'e düşürüldü */
    margin-bottom: 10px;
    color: #0f0;
    text-shadow: 0 0 5px #0f0;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    text-decoration: none;
    color: #0f0;
    border: 2px solid #0f0;
    padding: 5px 15px;
    font-size: 1rem;
    /* 1.5rem'den 1rem'e düşürüldü */
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
}

.social-btn i {
    font-size: 1.2rem;
}

.social-btn:hover {
    background: #0f0;
    color: #000;
    box-shadow: 0 0 20px #0f0;
    transform: translateY(-5px);
}

.social-btn.whatsapp:hover {
    box-shadow: 0 0 25px #25d366;
    border-color: #25d366;
    background: #25d366;
}

.social-btn.discord:hover {
    box-shadow: 0 0 25px #5865f2;
    border-color: #5865f2;
    background: #5865f2;
}

/* Visualizer Style */
.visualizer-container {
    width: 100%;
    max-width: 800px;
    height: 100px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#visualizer {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px #0f0);
}

/* RGB border animation for nodes */
.tree li a,
.destekciler-section,
.social-section,
.remix-player {
    animation: border-glow 3s infinite alternate;
}

@keyframes border-glow {
    0% {
        border-color: #0f0;
        box-shadow: 0 0 10px #0f0;
    }

    50% {
        border-color: #f0f;
        box-shadow: 0 0 20px #f0f;
    }

    100% {
        border-color: #0ff;
        box-shadow: 0 0 10px #0ff;
    }
}

@keyframes shake {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    10% {
        transform: translate(-5px, -5px) rotate(-1deg);
    }

    20% {
        transform: translate(5px, 5px) rotate(1deg);
    }

    30% {
        transform: translate(-5px, 5px) rotate(-1deg);
    }

    40% {
        transform: translate(5px, -5px) rotate(1deg);
    }

    50% {
        transform: translate(-5px, -5px) rotate(-1deg);
    }

    60% {
        transform: translate(5px, 5px) rotate(1deg);
    }

    70% {
        transform: translate(-5px, 5px) rotate(-1deg);
    }

    80% {
        transform: translate(5px, -5px) rotate(1deg);
    }

    90% {
        transform: translate(-5px, -5px) rotate(-1deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.shake-active {
    animation: shake 0.2s infinite;
    /* Daha hızlı ve sert */
}

/* Remix Player Styles */
.remix-player {
    width: 95%;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.album-art {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    border: 2px solid #0f0;
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-info {
    text-align: center;
    margin-bottom: 20px;
}

.track-name {
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 0 10px #0f0;
    margin-bottom: 5px;
}

.artist-name {
    font-size: 1.2rem;
    color: #888;
}

.remix-label {
    margin-top: 10px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #0f0;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #0f0;
    }

    to {
        text-shadow: 0 0 20px #0f0, 0 0 30px #0f0;
    }
}

.player-controls {
    width: 100%;
}

.progress-container {
    width: 100%;
    margin-bottom: 15px;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #0f0;
    margin-bottom: 5px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: #0f0;
    box-shadow: 0 0 10px #0f0;
    transition: width 0.1s linear;
}

.control-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.control-buttons button {
    background: transparent;
    border: 1px solid #0f0;
    color: #0f0;
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-buttons button:hover {
    background: #0f0;
    color: #000;
    box-shadow: 0 0 15px #0f0;
}

```