/* ========================================
   氷奏彩鬼 Official Website
   style.css
======================================== */


/* ========================================
   RESET / BASIC
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: #0b0d10;

    color: #e9eef2;

    font-family:
        "Yu Gothic",
        "Hiragino Kaku Gothic ProN",
        "Meiryo",
        sans-serif;

    line-height: 1.8;

    min-height: 100vh;
}


img {
    max-width: 100%;
    height: auto;
}


a {
    color: inherit;
}


ul {
    list-style-position: inside;
}

/* ========================================
   BACKGROUND
======================================== */

body {
    position: relative;
}


body::before {
    content: "";

    position: fixed;

    inset: 0;

    background:
        linear-gradient(
            rgba(5, 8, 12, 0.78),
            rgba(5, 8, 12, 0.88)
        ),
        url("images/bg.jpg")
        center center
        / cover
        no-repeat;

    z-index: -1;
}


/* ========================================
   HEADER
======================================== */

.header {
    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(10, 13, 17, 0.94);

    border-bottom:
        1px solid
        rgba(102, 204, 255, 0.25);

    backdrop-filter:
        blur(10px);
}


.header-inner {
    width: min(100%, 1200px);

    margin: 0 auto;

    padding:
        20px;

    text-align: center;
}


/* ========================================
   SITE LOGO
======================================== */

.site-logo {
    display: block;

    width: fit-content;

    margin:
        0 auto
        10px;

    text-decoration: none;
}


.site-logo img {
    display: block;

    width: 150px;

    max-width: 70vw;

    margin: 0 auto;
}


/* ========================================
   SITE TITLE
======================================== */

.header h1 {
    color: #ffffff;

    font-size: 30px;

    font-weight: 600;

    letter-spacing: 0.08em;
}


/* ========================================
   CATCH COPY
======================================== */

.catchcopy {
    margin-top: 4px;

    color: #8fdcff;

    font-size: 13px;

    letter-spacing: 0.12em;
}

/* ========================================
   NAVIGATION
======================================== */

.nav {
    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px 24px;

    width: 100%;

    margin: 0 auto;

    padding: 15px 20px;

    box-sizing: border-box;
}


.nav a {
    color: #c7ced6;

    font-size: 14px;

    letter-spacing: 0.08em;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color 0.2s ease;
}


.nav a:hover {
    color: #ffffff;
}
/* ========================================
   MAIN / COMMON SECTION
======================================== */

main {
    width: 100%;
}


.section {
    width: 100%;

    padding:
        100px 20px;
}


.container {
    width: min(100%, 1050px);

    margin: 0 auto;
}


/* ========================================
   SECTION TITLE
======================================== */

.section-label {
    margin-bottom: 5px;

    color: #66ccff;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}


.section h2 {
    margin-bottom: 35px;

    color: #ffffff;

    font-size: 36px;

    font-weight: 600;

    letter-spacing: 0.08em;
}


.section h2::after {
    content: "";

    display: block;

    width: 60px;

    height: 2px;

    margin-top: 12px;

    background: #66ccff;
}


/* ========================================
   BUTTON
======================================== */

.button {
    display: inline-block;

    margin-top: 15px;

    padding:
        10px 24px;

    border:
        1px solid #66ccff;

    border-radius: 5px;

    color: #66ccff;

    text-decoration: none;

    font-size: 13px;

    letter-spacing: 0.08em;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.button:hover {
    background: #66ccff;

    color: #0b0d10;

    transform:
        translateY(-2px);
}

/* ========================================
   HOME
======================================== */

.home {
    min-height: 620px;

    display: flex;

    align-items: center;

    text-align: center;
}


.home .container {
    padding:
        60px 30px;

    background:
        rgba(13, 18, 24, 0.72);

    border:
        1px solid
        rgba(102, 204, 255, 0.15);

    border-radius: 16px;
}


.home .section-label {
    text-align: center;
}


.home h2 {
    font-size: 48px;

    text-align: center;
}


.home h2::after {
    margin-left: auto;

    margin-right: auto;
}


.home-content {
    max-width: 750px;

    margin: 0 auto;
}


.home-content h3 {
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 26px;

    font-weight: 600;
}


.home-content p {
    margin-bottom: 18px;
}


.home-content p:first-of-type {
    color: #8fdcff;

    font-size: 15px;

    letter-spacing: 0.08em;
}


/* ========================================
   NEWS
======================================== */

.news-list {
    width: 100%;
}


.news-item {
    display: grid;

    grid-template-columns:
        150px
        1fr;

    gap: 30px;

    padding:
        25px 0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.12);
}


.news-item:first-child {
    padding-top: 0;
}


.news-item time {
    display: block;

    color: #66ccff;

    font-size: 13px;

    letter-spacing: 0.08em;
}


.news-content h3 {
    margin-bottom: 8px;

    color: #ffffff;

    font-size: 19px;

    font-weight: 600;
}


.news-content p {
    color: #b8c3c9;

    font-size: 14px;
}

/* ========================================
   PROFILE
======================================== */

.profile-content {
    display: grid;

    grid-template-columns:
        300px
        1fr;

    gap: 60px;

    align-items: center;
}


.profile-image {
    text-align: center;
}


.profile-image img {
    width: 260px;

    max-width: 100%;

    height: auto;

    border-radius: 50%;

    border:
        2px solid
        rgba(102, 204, 255, 0.7);

    box-shadow:
        0 0 30px
        rgba(102, 204, 255, 0.12);
}


.profile-name {
    margin-bottom: 0;

    color: #ffffff;

    font-size: 30px;

    font-weight: 600;
}


.profile-reading {
    margin-bottom: 20px;

    color: #66ccff;

    font-size: 13px;

    letter-spacing: 0.12em;
}


.profile-text p {
    margin-bottom: 18px;
}


.profile-text h3 {
    margin-top: 30px;

    margin-bottom: 10px;

    color: #66ccff;

    font-size: 14px;

    letter-spacing: 0.1em;
}


.profile-text ul {
    padding-left: 20px;

    color: #dce5ea;
}


.profile-text li {
    margin-bottom: 5px;
}


/* ========================================
   MOVIE
======================================== */

.movie-feature {
    width: 100%;
}


.movie-player {
    width: 100%;

    overflow: hidden;

    background: #000000;

    border-radius: 12px;

    box-shadow:
        0 10px 40px
        rgba(0, 0, 0, 0.35);
}


.movie-player iframe {
    display: block;

    width: 100%;

    aspect-ratio: 16 / 9;

    height: auto;

    border: 0;
}


.movie-info {
    margin-top: 25px;
}


.movie-label {
    margin-bottom: 5px;

    color: #66ccff;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.15em;
}


.movie-info h3 {
    margin-bottom: 10px;

    color: #ffffff;

    font-size: 23px;

    font-weight: 600;
}


.movie-info p {
    color: #b8c3c9;

    font-size: 14px;
}

/* ========================================
   SCHEDULE
======================================== */

.schedule-card {
    padding: 35px;

    background:
        rgba(18, 24, 31, 0.85);

    border:
        1px solid
        rgba(102, 204, 255, 0.3);

    border-left:
        4px solid
        #66ccff;

    border-radius: 10px;
}


.schedule-header {
    margin-bottom: 25px;
}


.schedule-status {
    display: block;

    margin-bottom: 8px;

    color: #66ccff;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.15em;
}


.schedule-header time {
    color: #cdd9df;

    font-size: 14px;
}


.schedule-body h3 {
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 25px;
}


.schedule-body p {
    color: #b8c3c9;
}


/* ========================================
   SNS・LINK
======================================== */

.sns-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}


.sns-card {
    display: flex;

    align-items: center;

    gap: 20px;

    min-height: 105px;

    padding: 22px;

    background:
        rgba(18, 24, 31, 0.85);

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: 10px;

    color: #ffffff;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


.sns-card:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(102, 204, 255, 0.6);

    background:
        rgba(25, 35, 45, 0.95);
}


.sns-card img {
    width: 60px;

    height: 60px;

    object-fit: contain;

    flex-shrink: 0;
}


.sns-card h3 {
    margin-bottom: 3px;

    color: #ffffff;

    font-size: 19px;

    font-weight: 600;
}


.sns-card p {
    color: #aab8c0;

    font-size: 13px;
}


.portfolio-card {
    justify-content: center;

    text-align: center;
}


.portfolio-card div {
    width: 100%;
}


/* ========================================
   CONTACT
======================================== */

.contact {
    text-align: center;
}


.contact .section-label {
    text-align: center;
}


.contact h2 {
    text-align: center;
}


.contact h2::after {
    margin-left: auto;

    margin-right: auto;
}


.contact-content {
    max-width: 700px;

    margin: 0 auto;
}


.contact-content p {
    margin-bottom: 10px;

    color: #c5d0d6;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    padding:
        45px 20px 35px;

    background:
        rgba(5, 8, 12, 0.92);

    border-top:
        1px solid
        rgba(102, 204, 255, 0.15);

    text-align: center;

    color: #7f8b92;

    font-size: 12px;
}


.footer-inner {
    width: min(100%, 1050px);

    margin: 0 auto;
}


.top-button {
    display: inline-block;

    margin-bottom: 25px;

    color: #66ccff;

    text-decoration: none;

    font-size: 13px;

    letter-spacing: 0.1em;

    transition:
        color 0.3s ease;
}


.top-button:hover {
    color: #ffffff;
}


.footer-copy {
    margin: 0;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .profile-content {
        grid-template-columns:
            240px
            1fr;

        gap: 35px;
    }


    .profile-image img {
        width: 220px;
    }


    .sns-grid {
        grid-template-columns:
            1fr 1fr;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    /* HEADER */

    .header-inner {
        padding: 15px;
    }


    .site-logo img {
        width: 120px;
    }


    .header h1 {
        font-size: 23px;
    }


    .catchcopy {
        font-size: 10px;
    }


    /* NAV */

    .nav {
        gap:
            5px 12px;

        margin-top: 14px;
    }


    .nav a {
        font-size: 12px;
    }


    /* SECTION */

    .section {
        padding:
            70px 15px;
    }


    .section h2 {
        font-size: 30px;
    }


    /* HOME */

    .home {
        min-height: 500px;
    }


    .home .container {
        padding:
            40px 20px;
    }


    .home h2 {
        font-size: 38px;
    }


    .home-content h3 {
        font-size: 22px;
    }


    /* PROFILE */

    .profile-content {
        grid-template-columns: 1fr;

        gap: 30px;

        text-align: center;
    }


    .profile-image img {
        width: 210px;
    }


    .profile-text {
        text-align: left;
    }


    /* NEWS */

    .news-item {
        grid-template-columns: 1fr;

        gap: 5px;
    }


    /* SCHEDULE */

    .schedule-card {
        padding: 25px;
    }


    /* SNS */

    .sns-grid {
        grid-template-columns: 1fr;
    }


    .sns-card {
        padding: 18px;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .header h1 {
        font-size: 20px;
    }


    .nav {
        gap:
            4px 10px;
    }


    .nav a {
        font-size: 11px;
    }


    .section h2 {
        font-size: 27px;
    }


    .home h2 {
        font-size: 34px;
    }


    .sns-card img {
        width: 50px;

        height: 50px;
    }


    .sns-card h3 {
        font-size: 17px;
    }


    .sns-card p {
        font-size: 12px;
    }

}

/* =========================
   COLLABORATORS
========================= */

#collaborators {
    max-width: 1050px;
    margin: 0 auto;
    padding: 90px 50px;
}

#collaborators .section-label {
    color: #42c8f5;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

#collaborators h2 {
    color: #ffffff;
    font-size: 36px;
    letter-spacing: 2px;
    margin: 0 0 45px;
    position: relative;
}

#collaborators h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #42c8f5;
    margin-top: 25px;
}

.collaborator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.collaborator-card {
    background: #11161c;
    border: 1px solid #2a323b;
    border-radius: 10px;
    padding: 28px 30px;
    transition: 0.3s ease;
}

.collaborator-card:hover {
    border-color: #42c8f5;
    transform: translateY(-3px);
}

.collaborator-card h3 {
    color: #ffffff;
    font-size: 20px;
    margin: 0 0 10px;
}

.collaborator-card p {
    color: #aeb7c0;
    font-size: 14px;
    margin: 0 0 18px;
}

.collaborator-card a {
    color: #42c8f5;
    text-decoration: none;
    font-size: 14px;
}

.collaborator-card a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {

    #collaborators {
        padding: 70px 20px;
    }

    #collaborators h2 {
        font-size: 30px;
    }

    .collaborator-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   PORTFOLIO CARD
   ========================= */

.portfolio-card {
    display: flex !important;
    align-items: center !important;

    width: 100% !important;
    min-height: 108px !important;

    box-sizing: border-box !important;

    padding: 20px 22px !important;

    background: #11161d !important;

    border: 1px solid #29313a !important;

    border-radius: 10px !important;

    color: #ffffff !important;

    text-decoration: none !important;
}

.portfolio-card:hover {
    border-color: #3b9ec5 !important;
}

.portfolio-card .link-card-content {
    width: 100%;
}

.portfolio-card h3 {
    margin: 0 0 8px 0;

    color: #ffffff;

    font-size: 20px;

    font-weight: 700;
}

.portfolio-card p {
    margin: 0;

    color: #aeb7c2;

    font-size: 14px;
}

/* =========================================================
   PORTFOLIO PAGE
   ========================================================= */

.portfolio-page {

    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    padding: 80px 30px 100px;

    box-sizing: border-box;

}


/* =========================================================
   HEADER
   ========================================================= */

.portfolio-header {

    margin-bottom: 80px;

    text-align: center;

}


.portfolio-header .section-label {

    margin-bottom: 12px;

    color: #8fa7b8;

    font-size: 13px;

    letter-spacing: 0.18em;

}


.portfolio-header h1 {

    margin: 0 0 25px;

    color: #ffffff;

    font-size: 42px;

    line-height: 1.4;

}


.portfolio-header > p:last-child {

    max-width: 700px;

    margin: 0 auto;

    color: #aeb7c2;

    font-size: 15px;

    line-height: 2;

}


/* =========================================================
   SECTION
   ========================================================= */

.portfolio-section {

    margin-bottom: 90px;

}


.portfolio-label {

    margin: 0 0 10px;

    color: #8fa7b8;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.2em;

}


.portfolio-section h2 {

    margin: 0 0 30px;

    color: #ffffff;

    font-size: 28px;

    line-height: 1.5;

}


.portfolio-section > p:not(.portfolio-label) {

    color: #aeb7c2;

    font-size: 14px;

    line-height: 1.9;

}


/* =========================================================
   GRID
   ========================================================= */

.portfolio-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

}


/* =========================================================
   ITEM
   ========================================================= */

.portfolio-item {

    overflow: hidden;

    background: #11161d;

    border: 1px solid #29313a;

    border-radius: 12px;

    box-sizing: border-box;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;

}


.portfolio-item:hover {

    transform: translateY(-3px);

    border-color: #465563;

}


/* =========================================================
   IMAGE AREA
   ========================================================= */

.portfolio-item-image {

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 150px;

    padding: 20px;

    box-sizing: border-box;

    background: #0c1117;

    border-bottom: 1px solid #29313a;

    color: #6f7c88;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-align: center;

}


/* =========================================================
   CONTENT
   ========================================================= */

.portfolio-item-content {

    padding: 25px;

}


.portfolio-item-content h3 {

    margin: 0 0 15px;

    color: #ffffff;

    font-size: 19px;

    line-height: 1.6;

}


.portfolio-item-content p {

    margin: 0 0 12px;

    color: #aeb7c2;

    font-size: 14px;

    line-height: 1.9;

}


.portfolio-item-content p:last-child {

    margin-bottom: 0;

}


/* =========================================================
   TOOLS / PRODUCTION
   ========================================================= */

.production-block {

    margin-top: 40px;

}


.production-block > h3 {

    margin: 0 0 20px;

    color: #ffffff;

    font-size: 20px;

}


/* =========================================================
   SOFTWARE
   ========================================================= */

.software-list {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;

}


.software-item {

    display: flex;

    flex-direction: column;

    gap: 7px;

    padding: 18px;

    box-sizing: border-box;

    background: #11161d;

    border: 1px solid #29313a;

    border-radius: 9px;

}


.software-item strong {

    color: #ffffff;

    font-size: 14px;

    line-height: 1.5;

}


.software-item span {

    color: #8f99a5;

    font-size: 12px;

    line-height: 1.5;

}


/* =========================================================
   SHOOTING
   ========================================================= */

.shooting-card {

    padding: 25px;

    box-sizing: border-box;

    background: #11161d;

    border: 1px solid #29313a;

    border-radius: 10px;

}


.shooting-card p {

    margin: 0 0 15px;

    color: #aeb7c2;

    font-size: 14px;

    line-height: 1.9;

}


.shooting-card p:last-child {

    margin-top: 15px;

    margin-bottom: 0;

}


.shooting-card ul {

    margin: 0;

    padding-left: 22px;

}


.shooting-card li {

    margin-bottom: 8px;

    color: #ffffff;

    font-size: 14px;

}


/* =========================================================
   PRICE
   ========================================================= */

.price-section {

    margin-top: 100px;

}


.price-introduction {

    margin-bottom: 30px;

}


.price-list {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.price-item {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    min-height: 100px;

    padding: 22px 25px;

    box-sizing: border-box;

    background: #11161d;

    border: 1px solid #29313a;

    border-radius: 10px;

}


.price-item-content {

    min-width: 0;

}


.price-item-content h3 {

    margin: 0 0 8px;

    color: #ffffff;

    font-size: 17px;

    line-height: 1.5;

}


.price-item-content p {

    margin: 0;

    color: #8f99a5;

    font-size: 13px;

    line-height: 1.7;

}


.price-value {

    flex-shrink: 0;

    margin-left: 30px;

    color: #ffffff;

    font-size: 20px;

    font-weight: 700;

    white-space: nowrap;

}


.price-note {

    margin-top: 25px;

    color: #7f8994;

    font-size: 12px;

    line-height: 2;

}


/* =========================================================
   CONTACT
   ========================================================= */

.portfolio-contact {

    margin: 100px 0 60px;

    padding: 45px 30px;

    box-sizing: border-box;

    background: #11161d;

    border: 1px solid #29313a;

    border-radius: 12px;

    text-align: center;

}


.portfolio-contact h2 {

    margin: 0 0 15px;

    color: #ffffff;

    font-size: 25px;

    line-height: 1.5;

}


.portfolio-contact p {

    max-width: 650px;

    margin: 0 auto 30px;

    color: #aeb7c2;

    font-size: 14px;

    line-height: 1.9;

}


.portfolio-contact-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 180px;

    padding: 13px 25px;

    box-sizing: border-box;

    background: #1a222b;

    border: 1px solid #3a4652;

    border-radius: 7px;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.08em;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;

}


.portfolio-contact-button:hover {

    background: #222c36;

    border-color: #596876;

}


/* =========================================================
   BACK
   ========================================================= */

.portfolio-back {

    margin-top: 50px;

    text-align: center;

}


.portfolio-back a {

    color: #aeb7c2;

    font-size: 14px;

    text-decoration: none;

}


.portfolio-back a:hover {

    color: #ffffff;

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {


    .portfolio-page {

        padding:
            60px 20px 80px;

    }


    .portfolio-header {

        margin-bottom: 60px;

    }


    .portfolio-header h1 {

        font-size: 32px;

    }


    .portfolio-section {

        margin-bottom: 70px;

    }


    .portfolio-section h2 {

        font-size: 24px;

    }


    .portfolio-grid {

        grid-template-columns: 1fr;

    }


    .portfolio-item-content {

        padding: 20px;

    }


    .software-list {

        grid-template-columns: 1fr;

    }


    .price-item {

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

    }


    .price-value {

        margin-left: 0;

    }


    .portfolio-contact {

        padding: 35px 20px;

    }


    .portfolio-contact h2 {

        font-size: 22px;

    }

}

/* =========================================================
   PORTFOLIO NAV
   ========================================================= */

.portfolio-nav {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;

    max-width: 1100px;

    margin: 0 auto;

    padding: 20px 30px;

    box-sizing: border-box;

}


.portfolio-nav a {

    padding: 10px 15px;

    background: #11161d;

    border: 1px solid #29313a;

    border-radius: 6px;

    color: #aeb7c2;

    font-size: 12px;

    text-decoration: none;

    letter-spacing: 0.08em;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;

}


.portfolio-nav a:hover {

    background: #1a222b;

    border-color: #596876;

    color: #ffffff;

}


/* =========================================================
   CONTACT MAIL
   ========================================================= */

.contact-mail {

    margin-top: 30px;

    padding: 25px;

    background: #0c1117;

    border: 1px solid #29313a;

    border-radius: 8px;

    text-align: center;

}


.contact-mail p {

    margin: 0 0 10px;

    color: #7f8994;

    font-size: 12px;

}


.contact-mail a {

    color: #ffffff;

    font-size: 16px;

    text-decoration: none;

    word-break: break-all;

}


.contact-mail a:hover {

    text-decoration: underline;

}


@media (max-width: 700px) {

    .portfolio-nav {

        padding: 15px 20px;

    }

    .portfolio-nav a {

        font-size: 11px;

    }

}

@media (max-width: 700px) {

    .nav {
        gap: 12px 18px;

        padding:
            12px 15px;
    }

    .nav a {
        font-size: 12px;
    }

}

/* ========================================
   PROFILE
   ======================================== */

.profile-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

    margin-top: 35px;

}


.profile-item {

    padding: 22px;

    background: #11161d;

    border: 1px solid #29313a;

    border-radius: 8px;

}


.profile-label {

    display: block;

    margin-bottom: 8px;

    color: #65c9f5;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.15em;

}


.profile-item p {

    margin: 0;

    color: #e6edf3;

    font-size: 14px;

    line-height: 1.7;

}


/* ========================================
   PROFILE DESCRIPTION
   ======================================== */

.profile-description {

    margin-top: 45px;

}


.profile-description h3,
.profile-block h3 {

    margin: 0 0 20px;

    color: #ffffff;

    font-size: 20px;

    letter-spacing: 0.08em;

}


.profile-description p,
.profile-block p {

    color: #aeb7c2;

    font-size: 14px;

    line-height: 2;

}


/* ========================================
   PROFILE BLOCK
   ======================================== */

.profile-block {

    margin-top: 50px;

    padding-top: 35px;

    border-top: 1px solid #29313a;

}


/* ========================================
   PROFILE LIST
   ======================================== */

.profile-list {

    margin: 0;

    padding-left: 20px;

    color: #aeb7c2;

    font-size: 14px;

    line-height: 2;

}


.profile-list li {

    margin-bottom: 5px;

}


/* ========================================
   TAG
   ======================================== */

.tag-list {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin: 20px 0;

}


.tag-list span,
.tag-list a {

    display: inline-block;

    padding: 8px 13px;

    background: #11161d;

    border: 1px solid #29313a;

    border-radius: 5px;

    color: #c7ced6;

    font-size: 12px;

    text-decoration: none;

}


.tag-list a:hover {

    color: #ffffff;

    border-color: #465563;

}


/* ========================================
   HASHTAG
   ======================================== */

.hashtag-list span,
.hashtag-list a {

    color: #65c9f5;

}


/* ========================================
   MOBILE
   ======================================== */

@media (max-width: 700px) {

    .profile-grid {

        grid-template-columns: 1fr;

    }


    .profile-item {

        padding: 18px;

    }


    .profile-description h3,
    .profile-block h3 {

        font-size: 18px;

    }

}

/* ========================================
   PRICE NOTES
   ======================================== */

.price-notes {

    margin-top: 30px;

}


.price-notes p {

    margin: 0 0 10px 0;

    padding: 0;

    line-height: 1.8;

}

/* ========================================
   COLLABORATOR SOCIAL LINKS
   ======================================== */

.collaborator-links {

    display: flex;

    gap: 12px;

    margin-top: 15px;

    flex-wrap: wrap;

}


.collaborator-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border: 1px solid #2a323c;

    border-radius: 6px;

    background: #10151b;

    color: #e6edf3;

    text-decoration: none;

    font-size: 14px;

    transition: 0.2s ease;

}


.collaborator-link:hover {

    border-color: #4fc3f7;

    background: #161d24;

}


.collaborator-link img {

    width: 22px;

    height: 22px;

    object-fit: contain;

}

/* ========================================
   NAVIGATION SPACING
   ======================================== */

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.nav a {
    margin: 0;
    padding: 0;
}