@keyframes disintegrate {
    0% {
        opacity: 1;
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateX(20px) translateY(50px) rotate(20deg); /* Mozgás jobbra, le és forgás */
    }
}

.key {
    display: none;
}

.disintegrate {
    display: inline-block;
    animation: disintegrate 0.8s forwards;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #111817;
    margin-top: 80px; /* Tér a fixált header számára. */
}

body.no-scroll {
    overflow: hidden;
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 3;
}
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 400px;
}
.popup-content h2 {
    margin-top: 0;
}
.popup-content button {
    margin-top: 15px;
    padding: 10px 15px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}
.popup-content button:hover {
    background: #0056b3;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

/* Burger menü alapértelmezett állapota */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 12vw;
    z-index: 2000;
    transition: opacity 0.3s ease;
}

.burger-menu.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Full-screen menü (rejtett alapértelmezés szerint) */
.full-screen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(12, 29, 101, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1500;
    overflow: hidden;
}

.full-screen-menu a {
    font-size: 24px;
    color: #ffffff;
    text-decoration: none;
    margin: 10px 0;
    transition: color 0.3s ease;
}

.full-screen-menu a:hover {
    color: #5cf5de;
}


/* X gomb (menü bezárása) */
.full-screen-menu .close-menu {
    display: flex;
    justify-content: end;
    position: absolute;
    top: 20px;
    right: 12vw;
    font-size: 32px;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1600;
}

/* Sticky header (finomított stílus) */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: #0c1d65;
    color: #e9e9e9; /* Fejléc szöveg színe */
    padding: 15px 10px 15px 10px;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-bottom: 1px solid #283937; /* Finom határvonal a fejlécnél */
}

.header-left {
    display: flex;
    flex-direction: column;
}

img.logoimg { 
    width: 300px;
    height: auto; 
    margin-top: 10px;
    padding-left: 20px; 
    cursor: pointer;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */ 
    border: 0px; }

h1.logo {
    font-family: 'Poppins', sans-serif; /* Egyedi betűtípus */
    font-size: 24px;
    color: #e9e9e9;
    margin: 0;
    cursor: default;
            -webkit-touch-callout: none; /* iOS Safari */
            -webkit-user-select: none; /* Safari */
             -khtml-user-select: none; /* Konqueror HTML */
               -moz-user-select: none; /* Old versions of Firefox */
                -ms-user-select: none; /* Internet Explorer/Edge */
                    user-select: none; /* Non-prefixed version, currently
                                          supported by Chrome, Edge, Opera and Firefox */
}

p.tagline {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    margin: 5px 0 0;
    color: #777;
    cursor: default;
            -webkit-touch-callout: none; /* iOS Safari */
            -webkit-user-select: none; /* Safari */
             -khtml-user-select: none; /* Konqueror HTML */
               -moz-user-select: none; /* Old versions of Firefox */
                -ms-user-select: none; /* Internet Explorer/Edge */
                    user-select: none; /* Non-prefixed version, currently
                                          supported by Chrome, Edge, Opera and Firefox */
}

.logo, .tagline {
    padding-left: 20px;
}

.header-right {
    display: flex;
    margin-right: 2vw;
}

.header-right .highlighted {
    padding: 8px 20px;
    margin-left: 10px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.header-right .highlighted:hover {
    background-color: #f36b21;
    color: #fff; /* Hover esetén fehér szöveg */
}

.header-right .rent-server {
    letter-spacing: 0.015em;
    font-weight: 700;
    background-color: #1942ab;
    /*border: 2px solid #8edace;*/
    color: white !important;
    padding-top: 10px;
}

.header-right .rent-server:hover {
    background-color: #153689;
    color: #fff !important;
}

.header-right .login {
    letter-spacing: 0.015em;
    font-weight: 700;
    border-radius: 0.75rem;
    background-color: #283937;
    color: #fff;
}

.header-right .login:hover {
    background-color: #f36b21;
    color: white;
}

.header-right a {
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.header-right a:hover {
    color: #f36b21;
}

/* Index - Landing page */

.hero {
    position: relative;
    background-color: #0c1d65;
    height: 500px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 20px;
    max-width: 600px;
    text-align: left;
    margin-left: 10vw;
    color: white;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #4285F4;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #0b5ed7;
}

.hero-background {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.image-box {
    position: absolute;
    top: 10%;
    right: 15vw;
    max-width: 500px;
}

.image-box img {
    width: 350px;
    height: auto;
}

        .steps-background {
            background-color: #f3f6fb;
            width: 90vw; /* Nem teljes szélesség */
            margin: 0 auto;
            padding: 60px 20px 200px 20px;
            text-align: center;
            border-radius: 0 0 10px 10px; /* Lekerekített sarkok */
            position: relative;
        }

        .steps-background h2 {
            font-size: 2.5em;
            color: #0c1d65;
            margin-bottom: 10px;
        }

        .steps-background p {
            font-size: 1em;
            color: #555;
            margin-bottom: 30px;
        }

        /* Kártyák konténere */
        .steps-container {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: -150px auto 0; /* Negatív marginnal emeljük fel */
            position: relative;
            margin-bottom: 40px;
        }

        .step-card {
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
            width: 30%;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-5px);
        }

        .step-card img {
            width: 70px;
            margin-bottom: 20px;
        }

        .step-card h3 {
            font-size: 1.2em;
            color: #0c1d65;
            margin-bottom: 10px;
        }

        .step-card p {
            font-size: 0.9em;
            color: #777;
            margin-bottom: 15px;
        }

        .step-card a {
            color: #0c1d65;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9em;
        }

        .step-card a:hover {
            text-decoration: underline;
        }

        .about-section {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* Bal oldali kép */
        .about-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-image img {
            max-width: 100%;
            height: auto;
        }

        /* Jobb oldali szöveg */
        .about-text {
            flex: 1;
            padding-left: 40px;
        }

        .about-text h2 {
            font-size: 2.5em;
            color: #0c1d65;
            margin-bottom: 15px;
            text-align: left;
        }

        .about-text p {
            font-size: 1em;
            color: #555;
            margin-bottom: 20px;
        }

        /* Százalékok */
        .stats {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }

        .stat {
            text-align: left;
            padding: 0px 10px 0px 0px;
        }

        .stat h3 {
            font-size: 2em;
            color: #0c1d65;
            margin: 0;
        }

        .stat p {
            font-size: 0.9em;
            color: #777;
            margin: 5px 0 0;
        }

        .faq-section {
            max-width: 800px;
            margin: 40px auto;
            padding: 20px;
            background-color: #f3f6fb;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            font-family: Arial, sans-serif;
        }
        
        .faq-section h2 {
            text-align: center;
            color: #0c1d65;
            font-size: 2em;
            margin-bottom: 20px;
        }
        
        .faq-item {
            margin-bottom: 15px;
        }
        
        .faq-question {
            width: 100%;
            text-align: left;
            background-color: #ffffff;
            color: #0c1d65;
            border: none;
            padding: 15px;
            font-size: 1.1em;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: #e6edf5;
        }
        
        .faq-question .arrow {
            font-size: 0.9em;
            color: #555;
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            background-color: #ffffff;
            margin-top: 10px;
            padding: 15px;
            border-radius: 5px;
            color: #555;
            display: none; /* Alapértelmezett állapotban rejtve */
            font-size: 0.95em;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .domain-search {
            text-align: center;
            padding: 60px 20px;
            background-color: #f3f6fb;
            color: #333;
        }

        #domain-search-form { 
            display: flex;
        }
        
        .domain-search h2 {
            font-size: 2em;
            color: #0c1d65;
            margin-bottom: 15px;
        }
        
        .domain-search p {
            font-size: 1.1em;
            margin-bottom: 20px;
        }
        
        .domain-form {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }
        
        .domain-form input {
            padding: 10px;
            font-size: 1em;
            width: 300px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        
        .domain-form button {
            background-color: #4a90e2;
            color: #fff;
            padding: 10px 20px;
            font-size: 1em;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .domain-form button:hover {
            background-color: #357ab8;
        }
        
        .game-servers {
            text-align: center;
            padding: 60px 20px;
            background-color: #ffffff;
            color: #333;
        }
        
        .game-servers h2 {
            font-size: 2em;
            color: #0c1d65;
            margin-bottom: 15px;
        }
        
        .game-servers p {
            font-size: 1.1em;
            margin-bottom: 20px;
        }
        
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .game-card {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            cursor: default;
        }
        
        .game-card h3 {
            font-size: 1.1em;
            color: #0c1d65;
            margin: 0;
        }

        .testimonials {
            text-align: center;
            padding: 60px 20px;
            background-color: #f3f6fb;
            color: #333;
        }
        
        .testimonials h2 {
            font-size: 2em;
            color: #0c1d65;
            margin-bottom: 15px;
        }
        
        .testimonials p {
            font-size: 1.1em;
            margin-bottom: 20px;
            color: #555;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            justify-content: center;
            justify-items: center;
        }
        
        .testimonial-card {
            background: #ffffff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-width: 300px;
            text-align: left;
        }
        
        .testimonial-card img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-bottom: 10px;
            border: 2px solid #0c1d65;
        }
        
        .testimonial-card p {
            margin: 10px 0;
            font-size: 0.95em;
            line-height: 1.5;
        }
        
        .testimonial-card p strong {
            color: #0c1d65;
            display: block;
            margin-top: 5px;
        }
        

        .stats-section {
            text-align: center;
            padding: 60px 20px;
            background-color: #f3f6fb;
            color: #333;
        }
        
        .stats-section h2 {
            font-size: 2em;
            color: #0c1d65;
            margin-bottom: 15px;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
            justify-content: center;
        }
        
        .stat-card {
            background: linear-gradient(145deg, #ffffff, #e9eef5);
            border: 1px solid #dde3ea;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .stat-card .stat-value {
            font-size: 2.5em;
            font-weight: bold;
            color: #0c1d65;
            margin-bottom: 10px;
            background: linear-gradient(145deg, #4a90e2, #357ab8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .stat-card p {
            font-size: 1em;
            color: #555;
            margin: 0;
            line-height: 1.4;
        }
        
        
        

div.index-container {
    max-width: 960px;
    margin: 20px auto;
}

div.index-box-1 {
    width: 100%; 
    border: none;
    background-color: transparent;
    color: #fff;
    display: flex;
    flex-direction: row;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

div.index-box-1-image {
    background-image: url("https://cdn.usegalileo.ai/sdxl10/5fa9fd1a-0e42-46ab-bbe1-ecbf426a8e12.png");
    width: 100%;
    height: 270px;
    background-size: cover;
    background-position: center center;
    border-radius: 15px;
}

div.index-box-1-text {
    padding-left: 40px;
    transition: opacity 1s ease-in-out;
}

p.mononit { width: 70%; padding-bottom: 20px; }

div.index-box-1-text h1 { font-size: 48px; margin-block-start: 0em; }
div.index-box-1-text h2 { font-size: 16px; font-weight: 200; }

div.index-box-2 { display: flex; flex-direction: row; justify-content: space-between; padding-bottom: 2.5rem; }
div.index-box-2 div.index-box-boxes { width: 200px; border: 1px solid #3b5450; border-radius: 0.5rem; background-color: #1b2725; padding: 1rem; }
div.index-box-2 div.index-box-boxes div.title { font-size: 16px; font-weight: 600; padding-bottom: 10px; }
div.index-box-2 div.index-box-boxes div.text { font-size: 14px; color: #9cbab5; }

div.index-box-3 { display: flex; flex-direction: row; justify-content: space-around; padding-bottom: 2.5rem; }
div.index-box-3 div.index-box-boxes2 { width: 300px; padding-right: 1.8rem; }
div.index-box-3 div.index-box-boxes2 div.title { font-size: 16px; font-weight: 600; padding-bottom: 10px; padding-top: 10px; }
div.index-box-3 div.index-box-boxes2 div.text { font-size: 14px; color: #9cbab5; }

a {
    color: #f36b21; /* Narancssárga linkek */
    text-decoration: none;
}

a:hover {
    color: #121212; /* Sötétszürke linkek hover esetén */
}

.recommendations-box { padding-bottom: 20px; display: flex; flex-direction: column; }

.recommendations-box .rate { display: flex; flex-direction: row; }

/* About us */
div.about-us-container {
    max-width: 960px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    padding-top: 2.5rem;
}

div.about-us-container .image { background-image: url('https://cdn.usegalileo.ai/stability/72a76d62-c991-4e7f-b507-f4a03468b853.png'); height: 220px; width: 960px; background-position: center center; border-radius: 15px; background-size: cover; }


.registration-form {
    padding: 50px 0;
    background-color: #f3f6fb;
    color: #333;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: bold;
    color: #0c1d65;
}

.form-group {
    margin-bottom: 25px;
}

label {
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
    color: #000000;
    font-weight: 500;
}

input, select, button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

input:focus, select:focus, button:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}

button {
    background-color: #0c1d65;
    color: #ffffff;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #357ab8;
}

.helper-text {
    font-size: 12px;
    color: #9cbab5;
    margin-top: 5px;
}


/*
input[type="text"], input[type="email"], input[type="tel"], input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #3b5450;
    border-radius: 8px;
    background-color: #1f1f1f;
    color: #f1f3e0;
    font-size: 16px;
    outline: none;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus {
    border-color: #5cf5de;
}

input[type="text"]:disabled {
    color: #5f5f5f;
    cursor: not-allowed;
}
*/

.phone-field {
    margin-bottom: 20px;
}

.phone-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

select {
    appearance: none;
    border: 1px solid #3b5450;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    color: rgb(29, 29, 29);
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

select option {
    color: rgb(29, 29, 29);
}

.form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #3b5450;
    border-radius: 5px;
}

.form textarea {
    resize: none;
    height: 80px;
}

button.button {
    background-color: #5cf5de;
    color: #1f1f1f;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s;
}

button.button:hover {
    background-color: #33af9d;
    color: #fff;
}

.login-link {
    text-align: center;
    margin-top: 20px;
}

.login-link p {
    font-size: 14px;
    color: #576a67;
}

.login-link a {
    color: #246f64;
    text-decoration: none;
    font-weight: 800;
}

.login-link a:hover {
    color: #33af9d;
}

/************ Dashboard 
/
/**********************************


/* Bal oldali menü */
.sidebar {
    width: 250px;
    background-color: #0c1d65; /* Mély kék */
    color: #e0e0e0;
    height: 100vh;
    position: fixed;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.sidebar h2 {
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    font-size: 24px;
}

.sidebar nav {
    flex-grow: 1;
    padding: 20px 0;
}

.sidebar a {
    display: block;
    padding: 15px 20px;
    color: #e0e0e0;
    text-decoration: none;
    margin: 10px 20px;
    background-color: transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sidebar a:hover {
    background-color: #4a90e2; /* Enyhe világoskék */
    color: #ffffff;
}

.sidebar a.active {
    background-color: #5cf5de; /* Türkiz */
    color: #0c1d65; /* Mély kék */
    font-weight: bold;
}

.sidebar .logout {
    background-color: #f36b21; /* Korall szín */
    color: #ffffff;
    font-weight: bold;
}

.sidebar .logout:hover {
    background-color: #d95d17; /* Erősebb piros */
}

/* Profil szekció */
.profile {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #1b1b1f45; /* Sötétszürke */
    border-radius: 8px;
    margin: 10px 20px;
    color: #e0e0e0;
}

.avatar {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #4a90e2;
}

.infobar {
    color: #ffffff;
    line-height: 1.4;
}

.infobar .username {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #e0e0e0;
}

.infobar .activity {
    font-size: 0.9rem;
    color: #c0c0c0;
}

        /* Jobb oldali tartalom */

.headbarmenu {
    display: none;
}

.content {
    margin-left: 250px;
    padding: 30px 50px;
    width: calc(100% - 250px);
    min-height: 100vh;
    background-color: #f3f6fb; /* Világos háttér */
    color: #333333;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1); /* Finom belső árnyék */
}

.content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #0c1d65; /* Mély kék */
    margin-bottom: 20px;
    font-weight: 500;
}

.content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.content .section {
    background-color: #ffffff; /* Fehér kártyák */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Lágy árnyék */
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover-effektus */
}

.content .section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Emelt hatás */
}

.content .section h2 {
    font-size: 24px;
    color: #4a90e2; /* Világoskék */
    margin-bottom: 15px;
    text-align: left;
    font-weight: 600;
}

.content .section p {
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
}

/* Linkek (opcionális, ha vannak a tartalomban) */
.content a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content a:hover {
    color: #357ab8;
}


        .modern-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 20px;
        }
    
        .modern-form .form-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 15px;
        }
    
        .modern-form .form-group label {
            margin-bottom: 5px;
            font-size: 14px;
            color: #000000;
        }
    
        .modern-form .form-group i {
            margin-right: 8px;
        }
    
        .form-group input,
        .form-group select {
            padding: 10px;
            font-size: 1em;
            border: 1px solid #ccc;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
    
        .form-group input:focus,
        .form-group select:focus {
            border-color: #779fdf;
            outline: none;
        }

        .form-group input[type="checkbox"]{
            width: 25px;
            margin-right: 10px;
        }
    
        .button-group {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
    
        .modern-form input, select {
            padding: 10px;
            font-size: 1em;
            border: 1px solid #ccc;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .modern-form .option-btn {
            padding: 10px 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 10%;
        }
    
        .option-btn:hover {
            background-color: #f36b21;
        }
    
        .option-btn.active {
            background-color: #f36b21;
            color: #fff;
        }
    
        .submit-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            background-color: #5cf5de;
            color: #121212;
            font-size: 16px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
    
        .submit-btn:hover {
            background-color: #48c9b0;
        }
    
        .submit-btn i {
            margin-right: 8px;
        }

        .datacenter-options {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .datacenter-option {
            border: 1px solid #ccc;
            padding: 10px;
            margin: 10px;
            width: 150px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: border 0.3s;
        }
        
        .datacenter-option.active {
            border-color: #f36b21; /* Kiemelés, ha kiválasztott */
        }
        
        .datacenter-flag {
            width: 48px;
            height: 36px;
        }
        
        .datacenter-info {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

/* Billing */

.billing-item {
    border: none;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2e3b3a, #1b2725);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.billing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.billing-header h3 {
    margin: 0;
    font-size: 1.5em;
    font-weight: bold;
    color: #00ffc6;
}

.billing-header p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #a8d5d3;
}

.billing-details p {
    margin: 5px 0;
    font-size: 1em;
    line-height: 1.5;
    color: #e0f2f1;
}

.billing-details p strong {
    color: #00ffc6;
}

.billing-header, .billing-details {
    margin-bottom: 10px;
}

.billing-details {
    padding-top: 10px;
    border-top: 1px solid #354d4c;
}

.billing-header i {
    color: #00ffc6;
    margin-right: 8px;
    font-size: 1.2em;
}



/* Szerver lista stílusok */
.server-item {
    background-color: #f5f5f536; 
    color: #333; /* Sötétszürke szöveg */
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* Lágy árnyék */
    border: 1px solid #6e6e6e; /* Finom keret */
}

.server-header h3,
.server-header p {
    margin: 0;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px; /* Távolság az ikon és a szöveg között */
    color: #dddddd; /* Középszürke szöveg */
}

.server-header p {
    margin-bottom: 20px;
}

.server-details p {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 4px 0;
    color: #555; /* Középszürke szöveg */
}

.server-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #5cf5de;
    color: black;
    padding: 8px 12px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-action:hover {
    background-color: #48c9b0;
}

/* Footer alapstílus */
.site-footer {
    background-color: #0c1d65;
    color: #ffffff;
    padding: 40px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.footer-container h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #4a90e2;
}

.footer-container p,
.footer-container ul {
    font-size: 0.95em;
    line-height: 1.6;
}

.footer-container ul {
    list-style: none;
    padding: 0;
}

.footer-container ul li {
    margin-bottom: 5px;
}

.footer-container ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-container ul li a:hover {
    color: #4a90e2;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9em;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
}

.footer-bottom a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #357ab8;
}

.social-share-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f3f6fb;
    color: #333;
}

.social-share-section h2 {
    font-size: 1.8em;
    color: #0c1d65;
    margin-bottom: 10px;
}

.social-share-section p {
    font-size: 1em;
    margin-bottom: 20px;
    color: #555;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
    color: black;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.social-icons a:hover img {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Blog */


main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

article {
    padding: 15px;
    margin-bottom: 15px;
    background: #1a1a1a;
    border-radius: 8px;
    transition: transform 0.2s;
}

article:hover {
    transform: scale(1.02);
}

article h2 a {
    color: #42a5f5;
    text-decoration: none;
    font-size: 1.5rem;
}

article h2 a:hover {
    text-decoration: underline;
}

.pagination {
    margin-top: 20px;
}

.pagination a {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px;
    background: #1976d2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.pagination a:hover {
    background: #0d47a1;
}

@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links, .footer-social, .footer-info {
        margin: 10px 0;
    }

    .header-right {
        display: none; /* Elrejti a hagyományos menüt mobilon */
    }

    .burger-menu {
        display: flex; /* Megjeleníti a burger menüt mobilon */
    }

    .image-box {
        display: none;
    }

    .hero h1 {
        margin-bottom: 20px;
        font-size: 18pt;
        padding-top: 0px;
        margin-top: 0px;
    }

    .about-section {
        display: flex;
        flex-direction: column;
    }

    #domain-search-form {
        display: flex;
        flex-direction: column;
    }

    div.about-us-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    div.about-us-container .image {
        max-width: 90vw;
    }

    div.about-us-container p {
        width: 90vw;
    }

    /* Dashboard */

    .sidebar {
        display: none;
    }

    .content {
        margin: 0;
        width: 100%;
    }

    .headbarmenu {
        display: flex;
        margin-top: 40px;
    }

    .headbarmenu nav {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .headbarmenu nav a {
        display: flex;
        margin-left: 20px;
        padding: 10px;
    }

    .headbarmenu nav a:hover {
        cursor: pointer;
    }

    .datacenter-option {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 130px;
    }

    .modern-form .option-btn {
        width: 30%;
    }

    .server-actions {
        display: flex;
        flex-direction: column;
    }

}
