@import url('https://fonts.googleapis.com/css2?family=Segoe+UI:wght@200;300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Genuine Windows 10 "Hero Wallpaper" Background */
body {
    width: 100vw;
    position: relative;
    background-color: #0d1b2a;
    background-image: 
        radial-gradient(circle at 50% 30%, rgba(0, 164, 239, 0.45) 0%, transparent 60%),
        radial-gradient(circle at 20% 20%, rgba(0, 120, 215, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 90, 158, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, #020b14 0%, #081d33 40%, #004578 70%, #001220 100%);
    background-attachment: fixed;
    background-size: cover;
    color: #ffffff;
    overflow-x: hidden;
    overflow-y: hidden; /* Locked initially for Pre-login Gate */
    padding-top: 60px;
}

/* Windows Light Beam Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    background: 
        polygon(0 0, 100% 0, 100% 100%, 0 100%),
        linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.03) 50%, transparent 55%);
    background-size: 100% 100%, 200% 200%;
}

a {
    text-decoration: none;
}

/* Base Responsive Media Handling */
img, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================================
   WINDOWS 10 PRE-LOGIN / LOCK SCREEN STYLES
   ========================================================= */
.lockscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0b1724;
    background-image: 
        radial-gradient(circle at 50% 40%, rgba(0, 120, 215, 0.5) 0%, transparent 70%),
        linear-gradient(180deg, #050d18 0%, #0a2540 50%, #020810 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease;
}

.lockscreen-overlay.unlocked {
    transform: translateY(-100vh);
    opacity: 0;
    pointer-events: none;
}

.lockscreen-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lockscreen-clock h1 {
    font-size: 80px;
    font-weight: 200;
    line-height: 1;
    letter-spacing: -1px;
}

.lockscreen-clock p {
    font-size: 28px;
    font-weight: 300;
    margin-top: 5px;
    color: #e0e0e0;
}

.lockscreen-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.user-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lockscreen-login h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #ffffff;
}

.win10-login-btn {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 10px 40px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.win10-login-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* =========================================================
   WINDOWS 10 TASKBAR & DESKTOP STYLES
   ========================================================= */
.win10-taskbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 48px;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.taskbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.start-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.start-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.taskbar-title {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.taskbar-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.taskbar-menu li a {
    color: #ffffff;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}

.taskbar-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.win10-desktop {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Window Frames */
.win10-window {
    width: 100%;
    max-width: 100%;
    background-color: rgba(15, 20, 28, 0.85);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border-radius: 2px;
    overflow: hidden;
}

.window-header {
    height: 32px;
    background-color: rgba(25, 30, 40, 0.95);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    user-select: none;
}

.window-title {
    font-size: 12px;
    color: #cccccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}

.window-controls {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.win-btn {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s;
}

.win-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.win-btn.close:hover {
    background-color: #e81123;
}

.window-body {
    padding: 40px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* DevBlog Section Specific Styling */
.devblog-header {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 15px;
}

.blog-tag {
    font-size: 11px;
    text-transform: uppercase;
    background: #0078d7;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 2px;
    letter-spacing: 1px;
}

.devblog-header h2 {
    font-size: 26px;
    margin-top: 10px;
    color: #00a4ef;
}

.blog-meta {
    font-size: 13px;
    color: #aaaaaa;
    margin-top: 5px;
}

.devblog-content p {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 15px;
    color: #e0e0e0;
}

.devblog-quote {
    border-left: 4px solid #00a4ef;
    background: rgba(0, 164, 239, 0.1);
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
    font-size: 15px;
    line-height: 1.5;
}

/* Proof Gallery Grid Styling */
.proof-gallery {
    margin: 30px 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.proof-gallery h3 {
    font-size: 18px;
    color: #00a4ef;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.proof-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.proof-card:hover {
    transform: translateY(-2px);
    border-color: #00a4ef;
}

.proof-img-wrapper {
    width: 100%;
    height: 220px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.proof-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proof-caption {
    font-size: 12px;
    color: #aaaaaa;
    margin-top: 10px;
    text-align: center;
    line-height: 1.4;
}

.devblog-link {
    display: inline-block;
    margin-top: 10px;
}

/* Section Styling Inside Windows */
.first_section h1 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
}

.first_section h1 span, .second__section h1 span, .third__section h1 span {
    color: #00a4ef;
}

.first_section p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1.5;
}

.fs__btns__container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.win10-btn, .fs__btns__container button {
    background-color: #0078d7;
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: center;
}

.win10-btn:hover, .fs__btns__container button:hover {
    background-color: #005a9e;
}

/* Contract Address Fix */
.ca-text {
    font-family: monospace;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 14px;
    border-radius: 4px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    word-break: break-all;
    overflow-wrap: anywhere;
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
}

.phone {
    max-width: 100%;
    width: 300px;
    display: block;
    margin: 20px auto 0;
}

/* Metro Grid Layout */
.second__section h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.ss__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.metro-tile {
    background-color: #0078d7;
    padding: 25px;
    transition: transform 0.2s, background 0.2s;
    border-left: 4px solid #00a4ef;
}

.metro-tile:hover {
    transform: translateY(-3px);
    background-color: #005a9e;
}

.metro-tile h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* About Section */
.seconddd__section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.ox1__ss__left__side {
    flex: 1;
    min-width: 280px;
}

.ox1__ss__left__side h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.ox1__ss__left__side p {
    line-height: 1.6;
}

.ox1__ss__right__side {
    flex: 1;
    display: flex;
    justify-content: center;
    width: 100%;
}

.holder, .holderelement {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Tokenomics Metro Tiles */
.ox1__second__section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.metro-stat {
    background: #0078d7;
    width: 100%;
    max-width: 240px;
    min-height: 100px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-bottom: 3px solid #00a4ef;
    text-align: center;
}

.metro-stat .f_hexagon {
    font-size: 14px;
    opacity: 0.8;
}

.metro-stat .s_hexagon {
    font-size: 15px;
    color: #ffffff;
    margin-top: 5px;
    word-break: break-word;
}

.ox1__ss__right__side__row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

/* Social Section */
.third__section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.third__section img {
    width: 100px;
    margin-bottom: 15px;
}

.ts__social__media__container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.sm_el {
    padding: 10px 15px;
    background: #0078d7;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.sm_el svg {
    fill: #ffffff;
    width: 24px;
    height: 24px;
}

.sm_el:hover {
    background: #005a9e;
}

/* Footer */
footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    color: #888;
}

/* Mobile Responsiveness */
.burger__menu, .remove_burger {
    display: none;
}

@media only screen and (max-width: 768px) {
    .win10-desktop {
        padding: 0 10px;
        margin: 10px auto;
    }

    .window-body {
        padding: 18px 14px;
    }

    .taskbar-menu {
        display: none;
    }

    .first_section h1 {
        font-size: 26px;
    }

    .fs__btns__container {
        flex-direction: column;
        width: 100%;
    }

    .fs__btns__container button,
    .fs__btns__container .win10-btn {
        width: 100%;
    }

    .seconddd__section, .ox1__second__section {
        flex-direction: column;
    }

    .ox1__ss__right__side__row {
        flex-direction: column;
    }

    .metro-stat {
        max-width: 100%;
    }

    .lockscreen-overlay {
        padding: 30px 20px;
    }

    .lockscreen-clock h1 {
        font-size: 56px;
    }

    .lockscreen-clock p {
        font-size: 20px;
    }
}