body {
    font-family: Consolas, monospace; 
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #00FF00;
    position: relative;
    
}

h1 {
    cursor: pointer;
    color: #000000; 
    text-shadow: 0 0 5px hsl(0, 0%, 100%), 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 40px #30f000, 0 0 80px #1eff16; 
    font-family: 'Orbitron', sans-serif; 
    letter-spacing: 2px; 
    animation: flicker2 1.5s infinite alternate;

}

#matrix {
    position: fixed;
    top: 0;
    left: 0px;
    width: 115%;
    height: 100%;
    z-index: -1;
    opacity: 0.14;
}

header {
    position: relative;
    padding: 1.2rem 0;
    z-index: 1;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 5px;
    padding: 0;
}

nav ul li {
    margin: 0 0.55rem;
}

nav ul li a {
    color: #ffffff;
    text-decoration: dashed;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 0.5em 0.25em;
    transition: background-color 0.3s, color 0.3s;
    animation: flicker 3s infinite alternate;
}

nav ul li a:hover {
    background-color: #ffffff;
    color: #000000;
}

nav ul li a:hover::after {
    width: 100%;
    left: 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #00FF00;
    transition: all 0.3s ease;
}

.right-menu {
    display: flex;
    align-items: center;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.right-menu i {
    margin-right: 1rem;
}

.search-icon {
    color: white;
    text-decoration: none;
    margin-right: 0.5rem;
    font-size: 1.1rem; 
}

.search-icon:hover {
    color: #00ff2a; 
}

.subscribe-button {
    padding: 0.35rem 1rem;
    text-decoration: none;
    cursor: pointer;
    color: #16aa03;
    border-radius: 0.5rem;
    border:3px solid #268b18c2;
    position: relative;
    background: #ffffff00;
    transition: 0.1s;
}

.subscribe-button::after {
    background-image: radial-gradient(circle farthest-corner at 10% 20%, rgb(121, 255, 94) 17.8%, rgb(29, 43, 22) 100.2%);
    filter: blur(15px);
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.subscribe-button:hover{
    color: #000000;
}

.subscribe-button:hover::after {
    opacity: 1;
}

.subscribe-button:active {
    transform: scale(0.9) rotate(3deg);
    background: radial-gradient(circle farthest-corner at 10% 20%, rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2%);
    transition: 0.5s;
}

#home {
    text-align: center;
    padding: 3rem 0;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* Tüm ekranın genişliğini kapla */
    height: 100vh; /* Tüm ekranın yüksekliğini kapla */
    object-fit: cover; /* Videonun en-boy oranını koruyarak alanı doldur */
    z-index: -1;
    opacity: 0.1;
}


.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem; 
    position: relative;
}

.profile img {
    cursor: crosshair;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin-bottom: 1rem; 
    backface-visibility: hidden;
}

.profil-resmi-kutusu{
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #000000da;
}

.profil-resmi-kutusu::after , .profil-resmi-kutusu::before{
    --angle:0deg;
    content: '';
    position: absolute;
    height: 104%;
    width: 104%;
    background-image: conic-gradient(from var(--angle),transparent 0%,rgb(36, 19, 65),rgb(65, 9, 9),rgb(51, 50, 139));
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    padding: 1px;
    border-radius: 50%;
    animation: 3s spin linear infinite;

}

.profil-resmi-kutusu::before{
    filter:blur(1rem);
    opacity: 0.5;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50px); 
    }
    100% {
        opacity: 1;
        transform: translateX(0); 
    }
}

@keyframes spark {
    0%, 100% {
        text-shadow: none;
    }
    20% {
        text-shadow: 2px 2px 5px rgba(78, 203, 24, 0.8), -2px -2px 5px rgba(88, 247, 8, 0.8);
    }
    40% {
        text-shadow: -2px -2px 5px rgb(26, 192, 14);
    }
}


.profile p {
    cursor: pointer;
    max-width: 750px;
    margin: 0 auto;
    margin-top: 1.2rem;
    padding: 0 2rem;
    font-size: 18px;
    color: rgba(30, 153, 19, 0.541);
    font-weight: 800;
    font-family: 'Courier New', Courier, monospace;
    
    position: relative;
    opacity: 0; /* Başlangıçta görünmez */
    animation: fadeIn 2s ease-out forwards, 
               spark 2s ease-in-out infinite; 
}



#home h1{
    font-size: 35px;
    letter-spacing: 0.1em;
    text-shadow: 0 0 5px rgb(255, 255, 255), 0 0 10px rgb(255, 255, 255), 0 0 20px rgba(95, 231, 17, 0.979), 0 0 40px rgba(255, 255, 255, 0.979), 0 0 120px rgb(32, 212, 25);
    animation: flicker2 1.5s infinite alternate;
}

@keyframes flicker2 {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
    }
    20%, 24%, 55% {
        opacity: 0.1;
    }
}


@keyframes flicker {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.7;
    }
}

.social-icons {
    margin-top: 20px;
    scale: 70%;
    margin-left: -4px;
}

.social-icons a {
    color: rgb(16, 83, 19);
    font-size: 2rem;
    margin: 0 3px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff9900;
}

.social-icons img {
    width: 32px;
    height: 32px;
    vertical-align:2%; 
}

.blog-list {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    max-width: 800px;
    font-family: Arial, sans-serif; 
}

.blog-list li {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #720f0fae;
}

.blog-list li:hover{
    background-color: white;
}

.blog-list li a {
    color: #478e1b; 
    text-decoration: none;
    margin: 0.2em;
    font-size: 1rem; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
    font-family: 'Courier New', Courier, monospace;
}

.blog-list li a:hover{
    font-size: 1.3rem;
    color: rgb(0, 0, 0);
    background-color: #ffffff;
}

.date {
    color: #0f4ea8;
    margin-right: 1rem;
    font-size: 0.9rem; 
}

.reading-time {
    color: #666262;
    margin-left: 1rem;
    font-size: 0.7rem; 
}

#support {
    text-align: center;
    padding: 2rem 0;
    background-color: #00000000;
    color: #00FF00;
}

.destek{
    margin-top: 1rem !important;
}

.support-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0rem;
    border: 1px solid #141313;
    box-shadow: 0 0 50px rgba(4, 247, 40, 0.518);
    border-radius: 10px;
    background-color: #3b36360c;
}

.support-content p {
    max-width: 600px; 
    margin: 0 auto; 
    padding: 0 1rem; 
    color: rgba(34, 212, 34, 0.925); 
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5), 0 0 10px rgba(0, 255, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0.5), 0 0 40px rgba(0, 255, 0, 0.5), 0 0 80px rgba(0, 255, 0, 0.5); /* Neon ışık efekti, daha az yoğun */
    font-family: 'Courier New', Courier, monospace;
    animation: flicker 1.5s infinite alternate;
}

.support-content h3{
    text-align: left;
    color: #000000; 
    text-shadow: 0 0 5px hsl(0, 0%, 100%), 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 40px #30f000, 0 0 80px #1eff16; /* Neon ışık efekti */
    font-family: 'Orbitron', sans-serif; 
    letter-spacing: 2px; 
    animation: flicker 1.5s infinite alternate;  
}

.wallet-address {
    margin: 1rem 0;
    padding: 1rem;
    background-color: #00000000;
    border-radius: 5px;
}

.wallet-address .address {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.05rem;
    color: #a29a9e;
    word-break: break-all;
}

.copy-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #44444411;
    padding: 0.5rem;
    border-radius: 5px;
}

.copy-btn {
    background-color: #00ff3715;
    color: rgb(15, 240, 45);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.copy-btn:hover {
    background-color: #000000;
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.notification.show {
    display: block;
    opacity: 1;
}

.wallet-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 10px;
}

.wallet-address p {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #ffffff;
}

.search-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.838);
    backdrop-filter: blur(10px);
}

.search-modal-content {
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
}

.close-button {
    align-self: flex-end;
    color: #aaaaaaa2;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: #2d522a;
}

.search-container {
    display: flex;
    margin-bottom: 20px;
}

#search-input {
    flex-grow: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #1d8d0f91;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    background-color: #000000;
    color: #00FF00;
}

#search-results {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#search-results li {
    padding: 15px;
    border-bottom: 1px solid #ebfb0441;
    text-align: left;
    transition: background-color 0.3s ease;
}

#search-results li:last-child {
    border-bottom: none;
}

#search-results li a {
    text-decoration: none;
    color: #5eb34d;
    transition: color 0.3s ease;
}

#search-results li:hover {
    background-color: rgba(26, 206, 65, 0.1);
}

#search-results li a:hover {
    color: #ffffff;
}

.menu-modal {
    display: none;
    position: fixed;

    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.749);
    backdrop-filter: blur(5px);
}

.menu-modal-content {
    background-color: rgba(0, 0, 0, 0.153);
    padding: 20px;
    border: 1px solid #00FF00;
    text-shadow: 0 0 10px hsl(94, 100%, 50%);
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(4, 247, 40, 0.3);
    position: fixed;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
   
}

.close-menu-button {
    color: #00FF00;
    float: right;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.close-menu-button:hover, .close-menu-button:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.menu-modal-content ul {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

.menu-modal-content ul li {
    margin-bottom: 15px;
    text-align: center;
}

.menu-modal-content ul li a {
    color: #00FF00;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.menu-modal-content ul li a:hover {
    background-color: rgb(255, 255, 255);
    color: #000000;
    text-shadow: 0 0 5px #000000;
}

.content {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

article {
    background-color: rgba(255, 255, 255, 0.041);
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 0 20px rgb(26, 255, 0);
    backdrop-filter: blur(5px);
}

.blog-post {
    margin-top: 20px;
}

.blog-post h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    
}

.content p {
    color: rgba(219, 208, 208, 0.836);
    font-family: 'Courier New', Courier, monospace;
}

.blog-post p {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1em;
    line-height: 1.6;
    color: rgba(219, 208, 208, 0.836);
}

.code-container {
    position: relative;
    width: 100%;
}

pre {
    background-color: rgba(48, 47, 47, 0.627) !important; 
    padding: 10px;
    border-radius: 5px;
    overflow: auto;
}

code {
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;
}

.copy-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #2d682fd2;
    color: rgba(255, 255, 255, 0.644);
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    z-index: 1;
}
.copy-button:hover{
    background-color: #000000;
}

.blog-image {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#google_translate_element {
    display: none; 
}

#custom_translate_icon {
    font-size: 1.15rem; 
    color: #ffffff;
    margin-left: 1rem;
    vertical-align: middle;
    transition: color 0.3s ease;
}

#custom_translate_icon:hover {
    color: #00ff2a; 
}

.goog-te-banner-frame {
    display: none !important;
}

#mc_embed_signup_scroll {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.mc-field-group, #mce-responses {
    flex: 1 1 100%;
    margin-bottom: 0.5rem;
}

.buttonx, .h-captcha {
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

.buttonx {
    padding: 0.35rem 1rem;
    text-decoration: none;
    cursor: pointer;
    color: #16aa03;
    border-radius: 0.5rem;
    border:3px solid #268b18c2;
    position: relative;
    background: #ffffff00;
    transition: 0.1s;
    margin-left: -5px !important;
}

.buttonx:hover{
    background-color: #00ff00a2;
    color: #000000;
}

.required_email {
    background-color: #000000a8;
    color: #00FF00;
    margin-bottom: 5px;
    font-size: 13px;
    border: 1px solid #00FF00;
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
    
}

.required_email::placeholder {
    color: #005500;
}

.error-message {
    color: #FF0000;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.abone_ol_h3{
    font-size: 15px;
    
}

.nft-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto;
}

.nft-item {
    background: #000000f8;
    border-radius: 10px;
    padding: 2em;
    text-align: center;
    width: calc(20% - 80px); 
    margin: 0 20px;
    position: relative;
    
}

@property --angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.nft-item::after, .nft-item::before{
    --angle:0deg;
    content: '';
    position: absolute;
    height: 102%;
    width: 102%;
    background-image: conic-gradient(from var(--angle),transparent 70%,green,white);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    padding: 1px;
    border-radius: 10px;
    animation: 3s spin linear infinite;
}

.nft-item::before{
    filter:blur(1.5rem);
    opacity: 0.5;
}

@keyframes spin{
    from {
        --angle: 0deg;
    }to{
        --angle: 360deg;
    }
}

.nft-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.267);
}



.nft-item button {
    background: #ffffff00;
    color: #16aa03;
    border:3px solid #268b18c2;
    padding: 0.35rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: 0.1s;
}

.nft-item button:hover {
    color: #000000;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 20px rgb(72, 255, 0);
}

.nft-item button:hover::after {
    opacity: 0.1;
}

.nft-item button:active {
    transform: scale(0.9) rotate(3deg);
    background: radial-gradient(circle farthest-corner at 10% 20%, rgba(255,94,247,1) 17.8%, rgba(2,245,255,1) 100.2%);
    transition: 0.5s;
}

.nft-item h2{
    font-size: 0.8em;
    margin: 20px 0;
    color: #48ff00; 
    text-shadow: 0 0 5px hsl(106, 100%, 50%), 0 0 10px #09ff00, 0 0 20px #5eff00, 0 0 40px #30f000, 0 0 80px #1eff16; 
    font-family: 'Orbitron', sans-serif; 
    letter-spacing: 2px; 
    animation: flicker 1.5s infinite alternate; 
}

::-webkit-scrollbar {
    width: 3px; 
    height: 3px;
    background-color: #0e0033; 
}

::-webkit-scrollbar-thumb {
    background-color: #1eff00;
    border-radius: 3px; 
}

::-webkit-scrollbar-thumb:hover {
    background-color: #053201;
}

::-webkit-scrollbar-button {
    background-color: #000000;
}

::-webkit-scrollbar-corner {
    background-color: #000000;
}

#info-box {
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none; 
    z-index: 100; 
    pointer-events: none;
    background-color:#a3a3a323;
    padding: 20px;
    border-radius: 10px;
  }
  
  .typewriter div p {
    color: #b1b1b1d3;
    font-family:'Courier New', Courier, monospace;
    font-size: 2.5rem; 
    margin-inline: auto;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid;
    width: 0;
    animation: 
      typing 1.1s steps(22, end) 1, 
      blink 0.75s step-end 1; 
    animation-fill-mode: forwards; 
}
  
@keyframes typing {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

body.blurred > *:not(#info-box):not(header):not(#loading){
    filter: blur(15px);
}


#disqus_thread {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.slider-container {
    color: white;
    font-family: 'Orbitron', sans-serif;
    position: relative;
}

#speedSlider {
    width: 100%;
    appearance: none;
    background: #0F0;
    height: 6px;
    outline: none;
    display: inline-flex;
    position: relative; 
    top: -3px; 
    z-index: 1; 
}

#speedSlider::-webkit-slider-thumb {
    appearance: none;
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

#speedSlider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

@media (max-width: 700px) {
    header {
         padding: 0;
    }
    .support-content {
        width: 90%;
        transform: scale(0.86);
        margin-top: -2rem;
    }
    pre{
        font-size: 0.8rem !important;
    }


    .nft-item {
        width: calc(50% - 40px); 
    }
    .nft-baslik{
        font-size:30px ;
        
    }
    #home h1{
        font-size: 30px;
       
    }
    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
    }
    nav ul.show {
        display: flex;
    }
    .menu-icon {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: #fff;
        padding: 1rem;
    }
    .right-menu {
        position: absolute;
        right: 1rem;
        display: flex;
        justify-content: flex-end;
        width: auto;
    }
    .right-menu a {
        margin-left: 0.5rem;
    }
    .h-captcha, .optionalParent {
        flex: 1 1 100%;
        margin-right: 0;
        margin-left: 0;
        transform: scale(0.9);
        transform-origin: center;
    }
    .optionalParent {
        justify-content: center;
        margin-top: 1rem;
    }
    .search-modal-content {
        width: 85%;
        margin: 10% auto;
    }
    
    #search-input {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    #speedSlider {
        width: 50%;
        left:60px;
    }
    pre{
        font-size: 0.6rem !important;
    }
    
    .blog-list{

        margin-top: 4rem;

    }
    .blog-list li a{
        font-size: 13px;
        font-family: Arial, Helvetica, sans-serif;
    }
    
    .date{
        font-size: 9.5px;
    }

    .reading-time{
        font-size: 8px;
    }

    .nft-item {
        width: 50%;
        background-color: #000000dd;
        padding: 3rem;  
    }
    #home h1{
        font-size: 24px;
        margin-bottom: 1.7rem;
    }
   
    .profile p{
        font-size: 19px;
        letter-spacing: -1.7px;
        padding:  0 0px;
        margin-bottom: 0.2rem;
    }
    .nft-baslik{
        font-size:21px ;  
    }
    .nft-item h2 {
        color: #00FF00;
    }
    
    
    .right-menu {
        display: inline-flex;
        flex-direction: row;
        align-items: center; 
        justify-content: flex-end;
    }
    .right-menu a {
        margin: 0 0;
    }
    .search-icon {
        display: flex;
        align-items: center;
    }
    .h-captcha {
        transform: scale(0.7);
        transform-origin: center;
       
            
    }

    .copy-button {
        
        top: -13px;
        right: 0px;
        height: 24px;
}

}
@media (max-width: 341px) {

    .slider-container{
        display: none;
    }
}

    
