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

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.7;
    color: #fff;
    background-color: #0b0a08;
    background-image: url('assets/Camo_PatternGold.svg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

:root {
    --accent-color: rgb(204, 184, 85);
}

header {
    background-color: transparent;
    color: white;
    text-align: center;
    padding: 4rem 2rem 2rem 2rem;
}

.castle-icon {
    max-width: 50px;
    height: auto;
    margin-bottom: 2.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.castle-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.collaboration {
    color: rgb(204, 184, 85);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1rem;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 1rem;
    display: inline-block;
    color: #fff;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    background-color: transparent;
    margin-bottom: 2rem;
    padding: 2rem;
    border: 2px solid rgb(204, 184, 85);
}

section:last-of-type {
    margin-bottom: 0;
}

h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 0;
    text-align: center;
}

.scammer-info {
    text-align: center;
}

.countdown-container {
    text-align: center;
}

.countdown {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.reveal-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    text-transform: lowercase;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.wallet-section {
    text-align: center;
    padding: 2rem;
    overflow-x: hidden;
}

.wallet-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

.wallet-address {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    word-break: break-all;
    max-width: 100%;
    box-sizing: border-box;
}

.wallet-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    text-transform: lowercase;
    margin: 0;
}

.scammer-info .name {
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    padding: 0.75rem 1.5rem;
    display: inline-block;
}

.alias {
    margin-top: 1rem;
    color: #fff;
}

.description {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.photo-placeholder {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.photo-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.info-box {
    background-color: transparent;
    padding: 0;
}

.info-box p {
    margin-bottom: 0;
    padding: 0;
    color: #fff;
}

.razed-logo {
    max-width: 300px;
    height: 120px;
    width: auto;
    display: block;
    margin: 0 auto 2rem auto;
    object-fit: contain;
}

.razed-text,
.section-text {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
    color: #fff;
}

.info-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    main {
        padding: 1.5rem;
    }
    
    section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .wallet-section {
        padding: 1.5rem;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .razed-text,
    .section-text {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 1.5rem;
        padding: 0;
        margin-bottom: 1rem;
    }
    
    .countdown {
        font-size: 2rem;
    }
    
    .reveal-text {
        font-size: 1.2rem;
    }
    
    .wallet-address {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    #wallet-addr {
        font-size: 0.85rem;
    }
    
    .wallet-text {
        font-size: 1rem;
    }
    
    .razed-logo {
        max-width: 250px;
        margin-bottom: 1.5rem;
    }
}

