@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500;600&display=swap');

/* Nếu đã có file Pricedown.ttf, thêm vào thư mục project và dùng đoạn sau: */
@font-face {
    font-family: 'Pricedown';
    src: url('font/Pricedown.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
	background-color: #0a0a0a;
	background-image: 
		url('image/logo-removebg.png'),
		linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 25%, #2a0a2a 50%, #e81c5a 75%, #0a0a0a 100%),
		radial-gradient(circle at 20% 80%, rgba(232,28,90,0.2) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(232,28,90,0.15) 0%, transparent 50%);
	background-position: center center, center center, center center, center center;
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
	background-size: 600px auto, cover, cover, cover;
	background-attachment: fixed, fixed, fixed, fixed;
	color: #fff;
	font-family: 'Roboto', Arial, sans-serif;
	margin: 0;
	padding: 0;
}

header {
    background: rgba(0,0,0,1);
    padding: 1px 1px 1px 1px;
    text-align: center;
    border-bottom: 2px solid #e81c5a;
}

.gta-title, h2 {
    font-family: 'Bungee', 'Russo One', Arial, sans-serif;
}

main {
    max-width: 80%;
    margin: 32px auto;
    padding: 0 16px;
}

section {
    background: rgba(34, 40, 49, 0.95);
    border-radius: 16px;
    margin-bottom: 32px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

h2 {
    color: #e81c5a;
    margin-top: 0;
    font-size: 2rem;
    text-shadow: 1px 1px 4px #000;
}

#about-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    font-family: 'Fira Sans', 'Roboto', Arial, sans-serif;
    font-weight: bold;
}

#member-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    margin: 0 auto;
    max-width: 900px;
}
.member-card.gta3 {
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid hsla(0,0%,100%,.1);
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    padding: 0;
    background: none;
    position: relative;
    height: 420px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.15s;
}

.member-card.gta3:hover {
    transform: scale(1.04);
    border: 1px solid #e81c5a;
    z-index: 2;
}
.member-card.gta3 .member-img-wrap {
    width: 100%;
    height: 100%;
    flex: 1 1 0;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}
.member-card.gta3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: block;
}
.member-card.gta3 h3, .member-card.gta3 p {
    position: absolute;
    left: 0; right: 0;
    z-index: 2;
    margin: 0;
    padding: 0 0.5em;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 8px #000, 0 0 8px #000;
}
.member-card.gta3 h3 {
    bottom: 2.5em;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: 'Pricedown', 'Bungee', Arial, sans-serif;
    color: #e81c5a;
}
.member-card.gta3 p {
    bottom: 1em;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Fira Sans', 'Bungee', Arial, sans-serif;
}
.member-card.gta3::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 35%;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 70%, rgba(0,0,0,0.1) 100%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
@media (max-width: 700px) {
    #member-list {
        flex-direction: column;
        flex-wrap: wrap;
        max-width: 98vw;
        align-items: center;
        height: auto;
        gap: 16px;
    }
    .member-card.gta3 {
        height: 200px;
        width: calc(50% - 8px);
        max-width: 200px;
        flex: 0 0 auto;
    }
    /* Ensure member image fills the card on mobile */
    .member-card.gta3 .member-img-wrap {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100%;
        height: 100%;
    }
    .member-card.gta3 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: 0;
        display: block;
    }
}

.media-group {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}
.media-block {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.media-block h3 {
    color: #e81c5a;
    font-size: 1.3rem;
    margin-bottom: 18px;
    font-family: 'Bungee', 'Russo One', Arial, sans-serif;
    letter-spacing: 1px;
}
.media-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.media-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    background: #222831;
    width: 220px;
    height: 140px;
    cursor: pointer;
    transition: transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.media-item img, .media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.media-brief {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-weight: bold;
    font-size: 1.05rem;
    padding: 10px 12px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 2;
}
.media-item:hover .media-brief {
    opacity: 1;
}
.media-item:hover {
    transform: scale(1.04);
    z-index: 2;
}
/* Popup media */
.media-popup {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}
.media-popup-content {
    background: #232526;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.7);
    width: auto;
    max-width: 96vw;
    max-height: 90vh;
    overflow: visible;
    padding: 32px 24px 24px 24px;
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.media-popup-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s;
    z-index: 10;
}
.media-popup-close:hover {
    color: #ff5252;
}
#media-popup-body img, #media-popup-body video {
    max-width: 90vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    margin-bottom: 18px;
    background: #111;
    display: block;
}
#media-popup-body video {
    width: 900px;
    height: 500px;
    max-width: 90vw;
    max-height: 60vh;
    border-radius: 12px;
    margin-bottom: 18px;
    background: #111;
    display: block;
    object-fit: contain;
}
.media-popup-brief {
    color: #e81c5a;
    font-size: 1.15rem;
    text-align: center;
    margin-top: 0;
    width: 100%;
}
.play-badge {
    position: absolute;
    right: 8px;
    bottom: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    pointer-events: none;
}
#media-popup-body iframe {
    width: 900px;
    height: 506px; /* 16:9 */
    max-width: 90vw;
    max-height: 70vh;
    border-radius: 12px;
    background: #111;
}
@media (max-width: 900px) {
    .media-group {
        flex-direction: column;
        gap: 24px;
    }
    .media-block {
        width: 100%;
    }
    .media-gallery {
        gap: 14px;
    }
    .media-item {
        width: 60vw;
        max-width: 320px;
        height: 180px;
    }
}

footer {
    text-align: center;
    padding: 16px 0 50px 0;
    background: rgba(0,0,0,0.7);
    color: #e81c5a;
    font-size: 1rem;
    border-top: 2px solid #e81c5a;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.footer-content > p {
    margin-bottom: 0;
}

.mysterious-hint {
    text-align: center;
    margin: 0;
    padding: 12px 20px;
    background: rgba(0,0,0,0.6);
    border-radius: 10px;
    border: 1px solid rgba(232,28,90,0.3);
    max-width: 500px;
}
.mysterious-hint p {
    margin: 6px 0;
    font-size: 0.95rem;
    color: #e4b26d;
    font-style: italic;
    text-shadow: 0 0 6px rgba(228,178,109,0.4);
    animation: subtleGlow 3s ease-in-out infinite alternate;
}
@keyframes subtleGlow {
    from { 
        text-shadow: 0 0 6px rgba(228,178,109,0.4);
        opacity: 0.8;
    }
    to { 
        text-shadow: 0 0 10px rgba(228,178,109,0.7), 0 0 15px rgba(228,178,109,0.3);
        opacity: 1;
    }
}
.mysterious-hint p:first-child {
    color: #ff6b6b;
    animation-delay: 0s;
}
.mysterious-hint p:last-child {
    color: #4ecdc4;
    animation-delay: 1.5s;
}
.password-section {
    display: flex;
    gap: 8px;
    align-items: center;
}
.password-input {
    padding: 8px 12px;
    border: 1px solid #e81c5a;
    border-radius: 6px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    font-size: 0.9rem;
    width: 200px;
}
.password-input::placeholder {
    color: rgba(255,255,255,0.6);
}
.password-btn {
    padding: 8px 16px;
    background: #e81c5a;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.password-btn:hover {
    background: #c41a6b;
}
.hidden-section {
    background: rgba(34, 40, 49, 0.95);
    border-radius: 16px;
    margin: 32px auto;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.black-market-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    margin: 0;
    font-family: 'Fira Sans', 'Roboto', Arial, sans-serif;
    font-weight: bold;
}

.black-market-layout {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}

.black-market-tabs {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-item {
    background: rgba(0,0,0,0.6);
    border: 2px solid rgba(232,28,90,0.5);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.tab-item:hover {
    border-color: #e81c5a;
    background: rgba(232,28,90,0.1);
    transform: translateY(-2px);
}

.tab-item.active {
    border-color: #e81c5a;
    background: rgba(232,28,90,0.2);
    box-shadow: 0 0 20px rgba(232,28,90,0.3);
}

.tab-item span:first-child {
    font-size: 2rem;
}

.tab-item span:last-child {
    font-size: 1rem;
    font-weight: bold;
    color: #e81c5a;
}

.black-market-content {
    flex: 1;
    background: rgba(0,0,0,0.4);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(232,28,90,0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    color: #e81c5a;
    font-size: 1.8rem;
    margin: 0 0 16px 0;
    font-family: 'Bungee', Arial, sans-serif;
    text-align: center;
}

.tab-content p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 24px 0;
    text-align: center;
    font-family: 'Fira Sans', 'Roboto', Arial, sans-serif;
}

.weapon-list, .service-list, .ammo-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.weapon-item, .service-item, .ammo-item {
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(232,28,90,0.3);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
}

.weapon-item:hover, .service-item:hover, .ammo-item:hover {
    border-color: #e81c5a;
    background: rgba(232,28,90,0.1);
    transform: translateX(5px);
}

.buy-btn {
    background: #e81c5a;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(232,28,90,0.3);
}

.buy-btn:hover {
    background: #c41a6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232,28,90,0.5);
}

.buy-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(232,28,90,0.4);
}

.weapon-icon, .service-icon, .ammo-icon {
    font-size: 1.5rem;
    flex: 0 0 auto;
}

.weapon-name, .service-name, .ammo-name {
    flex: 1;
    color: #fff;
    font-weight: bold;
    font-family: 'Fira Sans', 'Roboto', Arial, sans-serif;
}

.weapon-price, .service-price, .ammo-price {
    color: #e4b26d;
    font-weight: bold;
    font-size: 1.1rem;
    font-family: 'Bungee', Arial, sans-serif;
}

@media (max-width: 768px) {
    .black-market-layout {
        flex-direction: column;
        gap: 16px;
    }
    
    .black-market-tabs {
        flex: none;
        flex-direction: row;
        justify-content: center;
    }
    
    .tab-item {
        flex: 1;
        max-width: 150px;
    }
    
    .weapon-item, .service-item, .ammo-item {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 8px;
        padding: 12px;
    }
    
    .weapon-name, .service-name, .ammo-name {
        flex-basis: 100%;
        font-size: 0.95rem;
    }
    
    .weapon-price, .service-price, .ammo-price {
        font-size: 0.9rem; /* Giảm font size cho giá tiền trên mobile */
        flex-basis: 100%;
    }
    
    .contact-info {
        padding: 16px;
    }
    
    .contact-info h3 {
        font-size: 1.4rem;
    }
    
    .contact-item {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 8px;
        padding: 12px;
    }
    
    .contact-label, .contact-value {
        flex-basis: 100%;
        font-size: 0.9rem;
    }
    
    .contact-btn {
        margin-left: 0;
        flex-basis: 100%;
    }
}

.contact-info {
    margin-top: 32px;
    padding: 24px;
    background: rgba(0,0,0,0.6);
    border-radius: 16px;
    border: 1px solid rgba(232,28,90,0.3);
}

.contact-info h3 {
    color: #e81c5a;
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    font-family: 'Bungee', Arial, sans-serif;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    border: 1px solid rgba(232,28,90,0.2);
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: #e81c5a;
    background: rgba(232,28,90,0.1);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.8rem;
    flex: 0 0 auto;
}

.contact-label {
    color: #e4b26d;
    font-weight: bold;
    font-size: 1rem;
    font-family: 'Fira Sans', 'Roboto', Arial, sans-serif;
    min-width: 120px;
}

.contact-value {
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    font-family: 'Fira Sans', 'Bungee', Arial, sans-serif;
    background: rgba(232,28,90,0.2);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(232,28,90,0.3);
}

.contact-btn {
    background: #e81c5a;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(232,28,90,0.3);
    margin-left: auto;
}

.contact-btn:hover {
    background: #c41a6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232,28,90,0.5);
}

.contact-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(232,28,90,0.4);
}

@media (max-width: 768px) {
    .contact-details {
        gap: 12px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 12px;
    }
    
    .contact-label {
        min-width: auto;
    }
}

/* Popup thành viên GTA V */
#member-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.2s;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
#member-popup .popup-content {
    background: #232526;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.7);
    display: flex;
    flex-direction: row;
    max-width: 700px;
    width: 95vw;
    padding: 32px 24px;
    position: relative;
    gap: 32px;
    animation: zoomIn 0.2s;
}
@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}
.popup-img-wrap {
    flex: 0 0 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-img {
    width: 200px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    background: #fff;
}
.popup-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.popup-name {
    font-size: 2rem;
    color: #27ae60;
    margin: 0 0 8px 0;
    font-family: 'Pricedown', 'Bungee', Arial, sans-serif;
}
.popup-role {
    font-size: 1.2rem;
    color: #e81c5a;
    margin: 0 0 12px 0;
    font-weight: bold;
}
.popup-desc {
    font-size: 1.1rem;
    color: #fff;
}
.popup-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s;
    z-index: 10;
}
.popup-close:hover {
    color: #ff5252;
}
@media (max-width: 600px) {
    #member-popup .popup-content {
        flex-direction: column;
        padding: 18px 6px;
        gap: 12px;
        max-width: 98vw;
    }
    .popup-img-wrap {
        justify-content: center;
    }
    .popup-img {
        width: 90vw;
        max-width: 320px;
    }
}

.site-logo-title {
    background-image: 
        linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
        url("image/background-title.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 32px 0;
}
.site-logo {
    height: 170px;
    width: auto;
    display: block;
}
.gta-title {
    font-size: 4.5rem;
    letter-spacing: 2px;
    color: #e4b26d;
    text-shadow: 2px 2px 8px #000, 0 0 10px #000000;
    margin: 0;
    font-family: 'Pricedown', 'Bungee', Arial, sans-serif !important;
}

@media (max-width: 1000px) {
    .site-logo-title {
        flex-direction: column;
        gap: 12px;
        padding: 8px 0;
    }
    .site-logo {
        height: 200px;
    }
    .gta-title {
        font-size: 3.2rem;
    }
}

.about-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-top: 18px;
}
.about-logo-wrap {
    flex: 0 0 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.about-logo {
    width: 260px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    background: #fff;
    padding: 8px;
}
.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
}

.about-more-btn {
    background: none;
    color: #e81c5a;
    border: 1px solid;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: background 0.2s, color 0.2s;
    margin-left: 0;
    margin-top: 8px;
}
.about-more-btn:hover {
    background: #e81c5a;
    color: #fff;
}
/* Popup lịch sử băng đảng */
.about-popup {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}
.about-popup-content {
    background: #232526;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.7);
    max-width: 700px;
    width: 92vw;
    max-height: 80vh;
    overflow-y: auto;
    padding: 36px 32px 28px 32px;
    position: relative;
    color: #fff;
    animation: zoomIn 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-popup-content h3 {
    color: #e81c5a;
    margin-top: 0;
    font-size: 2rem;
    text-align: center;
}
.about-popup-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: justify;
}
.about-popup-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s;
    z-index: 10;
}
.about-popup-close:hover {
    color: #ff5252;
}
@media (max-width: 700px) {
    .about-flex {
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
    }
    .about-logo-wrap {
        width: 100%;
        justify-content: flex-start;
    }
    .about-logo {
        width: 100%;
    }
    .about-content {
        width: 100%;
        max-width: 100%;
        gap: 8px;
    }
}

#identity {
    background: rgba(34, 40, 49, 0.95);
    border-radius: 16px;
    margin-bottom: 32px;
    padding: 32px 24px 28px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
#identity h2 {
    color: #e81c5a;
    margin-top: 0;
    font-size: 2rem;
    text-shadow: 1px 1px 4px #000;
    font-family: 'Bungee', 'Russo One', Arial, sans-serif;
}
.identity-text p {
    font-size: 1.15rem;
    margin: 0 0 24px 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
.identity-images {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    margin-top: 8px;
}
.identity-img {
    width: 200px;
    height: 340px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    background: #fff;
    border: 3px solid #e81c5a;
}
@media (max-width: 700px) {
    .identity-images {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    .identity-img {
        width: 160px;
        height: 160px;
    }
}

.black-market-popup {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    animation: fadeInDark 0.5s ease-in-out;
}
@keyframes fadeInDark {
    from { 
        opacity: 0; 
        background: rgba(0,0,0,0);
    }
    to { 
        opacity: 1; 
        background: rgba(0,0,0,0.9);
    }
}
.black-market-popup-content {
    background: linear-gradient(135deg, #1a0a1a 0%, #2a0a2a 100%);
    border: 2px solid #e81c5a;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(232,28,90,0.6), inset 0 0 20px rgba(0,0,0,0.8);
    padding: 40px 30px;
    text-align: center;
    color: #fff;
    max-width: 500px;
    width: 90vw;
    position: relative;
    animation: slideInUp 0.5s ease-out;
}
@keyframes slideInUp {
    from { 
        transform: translateY(50px); 
        opacity: 0;
    }
    to { 
        transform: translateY(0); 
        opacity: 1;
    }
}
.popup-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
.black-market-popup-content h3 {
    color: #e81c5a;
    font-size: 1.8rem;
    margin: 0 0 16px 0;
    font-family: 'Bungee', Arial, sans-serif;
    text-shadow: 0 0 10px rgba(232,28,90,0.5);
}
.black-market-popup-content p {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 24px 0;
    line-height: 1.5;
}
.mysterious-text {
    margin: 20px 0;
    padding: 16px;
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    border-left: 3px solid #e81c5a;
}
.mysterious-text p {
    margin: 8px 0;
    font-size: 1rem;
    color: #e4b26d;
    font-style: italic;
    text-shadow: 0 0 8px rgba(228,178,109,0.3);
    animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
    from { text-shadow: 0 0 8px rgba(228,178,109,0.3); }
    to { text-shadow: 0 0 12px rgba(228,178,109,0.6), 0 0 20px rgba(228,178,109,0.4); }
}
.mysterious-text p:first-child {
    color: #ff6b6b;
    animation-delay: 0s;
}
.mysterious-text p:last-child {
    color: #4ecdc4;
    animation-delay: 1s;
}
.popup-close-btn {
    background: #e81c5a;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(232,28,90,0.4);
}
.popup-close-btn:hover {
    background: #c41a6b;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(232,28,90,0.6);
}
