body {
    font-family: Arial, sans-serif;
    background-color: #1e1e2f;
    color: white;
    margin: 0;
}

.header {
    background: #111;
    padding: 20px;
    text-align: center;
}

.title {
    margin: 0;
}

.nav-list {
    list-style: none;
    padding: 0;
}

.nav-link {
    color: #00c3ff;
    margin: 0 10px;
    text-decoration: none;
}

.main {
    padding: 20px;
}

.section-title {
    border-bottom: 2px solid #00c3ff;
    padding-bottom: 5px;
}

.block {
    margin-top: 20px;
    padding: 15px;
    background: #2a2a40;
    border-radius: 10px;
}

.list {
    padding-left: 20px;
}

.footer {
    text-align: center;
    padding: 10px;
    background: #111;
}
.layout {
    display: flex;
    gap: 30px;
    align-items: center;
}

.intro-text {
    flex: 2;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 12px;
    transition: 0.3s;
}

.intro-image img:hover {
    transform: scale(1.05);
}
.text {
    line-height: 1.6;
    margin-bottom: 15px;
}

.section-title {
    margin-top: 0;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.1);
}
.link {
    color: #00c3ff;
    text-decoration: none;
}

.link:link {
    color: #00c3ff;
}

.link:visited {
    color: purple;
}

.link:hover {
    color: yellow;
    text-decoration: underline;
}

.link:active {
    color: red;
}

.container {
    max-width: 1100px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
}

.box {
    flex: 1;
    background: #2a2a40;
    padding: 20px;
    border-radius: 15px;
}

.box-title {
    border-bottom: 2px solid #00c3ff;
    margin-bottom: 15px;
}

.links-list {
    padding-left: 20px;
}

.cool-link {
    text-decoration: none;
    color: #00c3ff;
    transition: 0.3s;
}

.cool-link:visited {
    color: purple;
}

.cool-link:hover {
    color: yellow;
    text-decoration: underline;
}

.cool-link:active {
    color: red;
}

.image-box {
    flex: 1;
}

.side-img {
    width: 100%;
    border-radius: 15px;
    height: 100%;
    object-fit: cover;
}

.topbar {
    background: #111;
    text-align: center;
    padding: 20px;
}

.menu-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
}

.menu-link {
    color: #00c3ff;
    text-decoration: none;
}
.menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #00c3ff;
    transition: 0.3s;
}

.menu-link:hover {
    color: white;
    text-shadow: 0 0 10px #00c3ff;
}

.menu-link:hover::after {
    width: 100%;
}
.bottom {
    text-align: center;
    padding: 20px;
    background: #111;
}
.vp-container {
    max-width: 1000px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
}

.vp-card {
    flex: 1;
    background: #2a2a40;
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s;
}

.vp-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px #00c3ff;
}

.vp-main-img {
    width: 70%;
    display: block;
    margin: 0 auto 20px;
    border-radius: 12px;
}
.vp-main-img:hover {
    transform: scale(1.05);
}
.vp-text {
    margin-bottom: 10px;
    line-height: 1.6;
}

.vp-title {
    margin-bottom: 15px;
}

.vp-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vp-form input,
.vp-form select,
.vp-form textarea {
    padding: 8px;
    border-radius: 8px;
    border: none;
}

.vp-form button {
    background: #00c3ff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.vp-form button:hover {
    background: #0099cc;
}

.neon-title {
    color: #00c3ff;
    text-shadow: 0 0 10px #00c3ff, 0 0 20px #00c3ff;
}

.fade-in {
    animation: fadein 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.card {
    background: #2a2a40;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #00c3ff;
}

.badge {
    background: #00c3ff;
    color: black;
    padding: 3px 6px;
    border-radius: 6px;
    font-size: 12px;
}

.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #00c3ff, transparent);
    margin: 40px 0;
}

.glass {
    background: rgba(42, 42, 64, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 195, 255, 0.2);
}

.hover-glow:hover {
    box-shadow: 0 0 25px #00c3ff;
}
.logo {
    width: 200px;
    height: 75px;
    object-fit: cover;
}
.logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
}