:root {
     color-scheme: only light;
}
* {
    box-sizing: border-box;
    /*transition: all 2s ease-in-out;*/
}
body{
    background-color: #111;
    transition: background-color 10ms normal !important;
    overflow-x: hidden;
}


#home ,#news, #inform{
    animation: woow 1s ease-in-out forwards;
}

@keyframes woow{
    0%{
        transform:translateX(10vw) scaleY(0);
        opacity: 0%;
        
    }
    100% {
        transform: translateX(0)  scaleY(1);
        opacity: 100%;
    }
}
#navbar{
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(17, 17, 17, 0.3); /* 0.3 = %30 opak, %70 saydam */
    backdrop-filter: blur(15px); /* Blur'u artırın */
    -webkit-backdrop-filter: blur(15px); /* Safari desteği */
}
#navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
#navbar li a {
    display: block;
    color: white;
    text-align: center;
    padding: 10px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.new-badge {
    background-color: #ff6b6b;
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
    margin-left: 5px;
    vertical-align: super;
}
#navbar .fas.fa-external-link-alt {
    font-size: 0.8rem;
    margin-left: 5px;
}
#navbar li a:hover {
    background-color: rgba(0, 255, 136, 0.1);
    color: #00ff88;
}
#home a:hover, #news a:hover, #inform a:hover{
    background-color: transparent;
}
#home a, #news a, #inform a{    
    padding-right: 40px;
    padding-left: 40px;
}


#main{
    background: linear-gradient(180deg, rgb(2, 2, 28, 0.709));
    margin: 0;
    padding: 0;
    border-radius: 2%;
}

.welcome h1 {
    text-align: center;
    display: flexbox;
    margin: 0 auto;
    max-width: 200px;
    font-family: 'Courier New', Courier, monospace;
    color: #bbb;
    font-weight: 520;
    font-size: 2.4em;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 6s steps(60, end);
    transition: all .5s ease-in-out;
    text-shadow: 0 9px 6px black;
}
@keyframes typing {
    from{
        width: 0;
    }
    to{
        width: 100%;
    }
}


  
#home, #news,#inform,#transition-for-info,#last-section{
    float: none;
    border-right:3px solid #bbb;
}
 
#transition-for-info a {
    display: block;
    color: white;
    text-align: center;
    padding: 10px 40px;
    text-decoration: none;
    position: sticky;
}


@property --angle{
    syntax: "<angle>";
    initial-value: 90deg;
    inherits: false;
}



@keyframes spin {
    from{
        --angle: 0deg;
    }
    to {
        --angle: 360deg;
    }
}

@keyframes header-center{
    0% {
        margin: 0 10px;
        opacity: 0%;
    }
    100% {
        margin: 0 30px ;
        opacity: 100%;
    }
}

@keyframes bounce-right {
    from {
        transform: translate(100px, -50px);
    }
    to {
        transform: translate(0);
    }
}
@keyframes bounce-down {
    from {
        transform: translate(0, 100px);
    }
    to {
        transform: translate(0);
    }
}
@keyframes bounce-left {
    from {
        transform: translate(-100px,-50px);
    }
    to {
        transform: translate(0);
    }
}

@keyframes box-back {
    from {
        transform: translate(0);
        scale: 1;
        border-radius: 10%;
    } 
    to {
        transform: translate(10px);
        scale: .7;
        border-radius: 10%;
    }
}
@keyframes border-radius-for-img {
    0% {
        border-radius: 3%;
    }
    50% {
        border-radius: 10%;
    }
    100%{
        border-radius: 10%;
    }
}

#box-1-img{
    width: 100%;
    height: 100%;
    border-radius: 10%;
    align-items: center;
    display: block;
}
.box-text{
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    white-space: nowrap;
}
.box-text a{
    color: #bbb;
}
#box-name{
    font-style: oblique;
    font: bolder;
    color: #3498db;
}


#box-2-img{
    width: 100%;
    height: 100%;
    border-radius: 10%;
}

#box-2-back{
    display: flex;
    text-align:justify;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

#box-name-3 a{
    text-decoration: none;
    color: #f39c12;
}
.header-center{
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #bbb;
    font-family: "proxima nova semibold", "Helvetica Neue", Helvetica, Arial, Sans-serif;
    text-shadow: 0px 8px 5px #000000;
    
    
}
.header-center::before, 
.header-center::after{
    content: '';
    flex: 1;
    animation: header-center 1s ease-in forwards;
    border-bottom: 4px solid #bbb;
    border-radius: 10px;
}

.header-center h3{
    white-space: nowrap ;
    display: inline;
}



#section-1{
    margin: 0;
    padding: 0;
    margin-top: 5px;
    height: auto;
    background-color: #000000;
    border-radius: 20px;

}
.video-container {
    width: 100%; 
    height: 100%;
    border: 5px solid #000000;
    border-radius: 10px; 
    overflow: hidden; 
}

video {
    width: 100%; 
    height: auto;
}

.last-section{
    margin: 0;
    padding: 0;
    background-color: #bbb;
    border-radius: 20px;
    height: 400px;
}

.form{
    position: relative;
    left: 15%;
    max-width: 100px;
    width: 80%;
    float: left;
    margin-top: 5%;
}
#email, #name, #write-box{
    padding: 3px;
    margin: 3px;
    float: left;
    border: none; 
    border-radius: 10px;
    caret-color: #222;
    caret: block;
    padding: 15px;
    width: 250px;
}
#email::placeholder, #name::placeholder, #write-box::placeholder{
    color: #222;
}
#write-box{
    max-width: 300px;
    max-height: 150px;
    margin-bottom: 20px;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: snow;
    color: #222;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin-left: 60px;
    transition: all .3s ease-in-out;
}

.submit-button:hover{
    background-color: #222 ;
    color: snow;
}
input:focus, textarea:focus{
    outline: none;
}

#logos{
    margin-left:50%;
    border-radius: 0%;
    list-style: none;
    padding-top: 6%;
}
#logos a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    aspect-ratio: 1;
    font-size: 1.5rem ;
    color: #7a7a7a;
    background-color: #373737;
    border-radius: 50%;
    transition: color 0.5s ease-in-out;
    margin: auto;
    text-decoration: none;
}
#logos li{
    padding-bottom: 10px;
}
#logos a::after{
    position: absolute;
    z-index: -1;
    content: '';
    inset: -3px;
    border-radius: inherit;
    background: conic-gradient(greenyellow var(--fill), transparent var(--fill));
    transition: --fill 0.6s ease-in-out;
}

@property --fill{
    syntax: '<percentage>';
    inherits: true;
    initial-value: 0%;
}

#logos a:hover{
    color: greenyellow;
    --fill: 100%
}
.form-logo-divider{
    transform: rotate(90deg);
    border-bottom: none ;
    border-top: 3px solid #111;
    border-radius: 20px;
    width: 20%;
    display: flex;
    position: relative;
    top: 50%;
    width: 20%;
}
@media only screen and (max-width: 1000px) {
    #boxes{
        display: grid;
    }
}
@media only screen and (max-width: 900px) {
    
    form{
        max-width: 400px;
    }
    #last-section hr{
        justify-content: center;
        width: 30%;
    }
    form #email, #name, #write-box, #submit{
        display: flex;
        width: 160px;
    }
    #submit{
        margin-left: 0;
    }
}
@media only screen and (max-width: 600px) {
    #last-section hr{
        width: 50%;
        left: 10%;
    }
    #navbar ul {
        flex-wrap: wrap;
    }
    
    #navbar li {
        flex: 1 1 auto;
    }
    
    #home a, #news a, #inform a {    
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media only screen and (max-width: 400px){
    .welcome h1{
        animation: typing 2.5s steps(60, end);
    }
    
    #home a, #news a, #inform a{    
        padding-right: 20px;
        padding-left: 20px;
    }
    
    form{
        max-width: 300px;
        margin-top: 40px;
    }
    form #email, #name, #write-box, #submit{
        display: flex;
        width: 140px;
        
    }
    #last-section hr{
        width: 60%;
        left: 10%;
    }
    #submit{
      max-width: 120px;
      margin-left: 10%;
    }
    #logos{
        margin-top: 20%;
    }
    
    
}
@media (prefers-color-scheme: dark) {
    body{
        background-color: #111;
        
    }
    #main{
        background: linear-gradient(180deg, rgb(2, 2, 28, 0.709));
    }
    #transition-for-info a {
        color: white;
    }
    .welcome h1 {
        color: #bbb;
        text-shadow: 0 9px 6px black;
    }
    
    .header-center{
        color: #bbb;
        text-shadow: 0px 8px 5px #000000;
    }
    .header-center::before, 
    .header-center::after{
    border-bottom: 4px solid #bbb;
    border-radius: 10px;
    }
    
    #section-1{
        background-color: #000000;
    }
    .video-container {
        border: 5px solid #000000;
    }
    .last-section{
        background-color: #bbb;
    }
    #email, #name, #write-box{
        caret-color: #222;
    }
    #email::placeholder, #name::placeholder, #write-box::placeholder{
        color: #222;
    }
    .submit-button {
        background-color: snow;
        color: #222;
    }
    
    .submit-button:hover{
        background-color: #222 ;
    }
    #logos a{
        color: #7a7a7a;
        background-color: #373737;
    }
    #logos a::after{
        background: conic-gradient(greenyellow var(--fill), transparent var(--fill));
    }
    #logos a:hover{
        color: greenyellow;
    }
    .form-logo-divider{
        border-top: 3px solid #111;
    }
     html, body{
          color-scheme: only light;
     }
}
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: light;
    }
}
@media (forced-colors: active) {
    :root {
        color-scheme: light;
    }
}
/* Container */
#boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Base box styling */
.box {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Animated border effect */
.box::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(45deg, 
        transparent,
        var(--border-color),
        transparent
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderRotate 3s linear infinite;
}

.box:hover::before {
    opacity: 1;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Color themes for each box */
#box-1 { --border-color: #3498db; --overlay-color: rgba(52, 152, 219, 0.408); }
#box-2 { --border-color: #d37267; --overlay-color: rgba(238, 141, 131, 0.297); }
#box-3 { --border-color: #f39c12; --overlay-color: rgba(114, 72, 4, 0.181); }

/* Inner container */
.box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

/* Image styling */
.box-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.box:hover .box-img {
    transform: scale(1.1);
}

/* Overlay effect */
.box-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-color);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.box:hover .box-overlay {
    opacity: 1;
}

/* Content styling */
.box-content {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.box:hover .box-content {
    transform: translateY(0);
}

.box-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.box-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.box-title a:hover {
    color: #ffd700;
}

.box-subtitle {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    font-style: italic;
    opacity: 0.9;
}

.box-icon {
    display: inline-block;
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.box-icon:hover {
    transform: scale(1.2);
}

/* Entrance animations */
#box-1 { animation: slideInLeft 0.8s ease-out; }
#box-2 { animation: slideInBottom 0.8s ease-out 0.2s both; }
#box-3 { animation: slideInRight 0.8s ease-out 0.4s both; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .box {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }
    
    .box:hover {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    #boxes {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .box {
        height: 400px;
    }
    
    .box-title {
        font-size: 1.5rem;
    }
    
    .box-subtitle {
        font-size: 1rem;
    }
}

/* Blog Preview Section Styles */
.blog-preview-section {
    padding: 80px 0;
    background-color: #0a0a0a;
    position: relative;
    border-radius: 10px;
}

.blog-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #888;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-preview-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-preview-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}


.blog-category {
    color: #00ff88;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-date {
    color: #666;
}

.blog-card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #00ff88;
}

.blog-card-excerpt {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.blog-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-tag {
    background-color: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.read-more-link {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more-link:hover {
    gap: 10px;
}

.blog-section-footer {
    text-align: center;
    margin-top: 50px;
}

.view-all-posts {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: transparent;
    border: 2px solid #00ff88;
    color: #00ff88;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-posts:hover {
    background-color: #00ff88;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-preview-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-preview-card {
        padding: 20px;
    }
    
    .blog-card-title {
        font-size: 1.3rem;
    }
    
    .blog-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Loading Animation for Dynamic Content */
.blog-loading {
    text-align: center;
    padding: 40px;
}

.blog-loading::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    border-top-color: #00ff88;
    animation: spin 1s linear infinite;
}



/* Animation for cards appearing */
.blog-preview-card {
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.blog-preview-card:nth-child(1) { animation-delay: 0.1s; }
.blog-preview-card:nth-child(2) { animation-delay: 0.2s; }
.blog-preview-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Hero Section - Terminal Style */
.hero-section {
    min-height: 100vh;
    background: #0a0e27;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #667eea;
    top: 10%;
    left: 10%;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #764ba2;
    bottom: 10%;
    right: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: #f093fb;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(30px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.terminal-window {
    background: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
}

.terminal-header {
    background: #323232;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-button.red {
    background: #ff5f56;
}

.terminal-button.yellow {
    background: #ffbd2e;
}

.terminal-button.green {
    background: #27c93f;
}

.terminal-title {
    color: #999;
    font-size: 14px;
    margin-left: auto;
}

.terminal-body {
    padding: 30px;
    color: #fff;
    min-height: 400px;
}

.terminal-line {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.prompt {
    color: #27c93f;
    margin-right: 10px;
}

.terminal-output {
    color: #aaa;
    margin-bottom: 20px;
    margin-left: 20px;
}

.terminal-output p {
    margin: 5px 0;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 20px;
    background: #fff;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.hero-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.cta-button i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(3px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .terminal-body {
        padding: 20px;
        font-size: 14px;
    }
    
    .shape-1, .shape-2, .shape-3 {
        width: 200px;
        height: 200px;
    }
}
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #00ff41;
    border-radius: 10px;
    position: relative;
    animation: neonGlow 2s ease-in-out infinite;
}

@keyframes neonGlow {
    0%, 100% {
        box-shadow: 
            0 0 5px #00ff41,
            0 0 10px #00ff41,
            0 0 15px #00ff41,
            0 0 20px #00ff41;
    }
    50% {
        box-shadow: 
            0 0 10px #00ff41,
            0 0 20px #00ff41,
            0 0 30px #00ff41,
            0 0 40px #00ff41;
    }
}
