/* style.css */

body {
    background-color: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.luxury-header {
    background: rgba(0,0,0,0.8);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.luxury-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-shadow: 0 0 5px rgba(255,255,255,0.3);
    margin-right: 20px;
}

.hash-simulator {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: #e0e0e0;
    background: #111;
    padding: 5px 10px;
    border: 1px solid #e0e0e0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
    text-align: center;
    margin: 0 20px;
    flex-grow: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}

.status-box {
    padding: 10px;
    border: 1px solid #e0e0e0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.status-item {
    display: flex;
    gap: 5px;
}

.status-label {
    color: #e0e0e0;
}

.status-value {
    font-weight: bold;
}

.online {
    color: #00ff00;
}

.luxury-button {
    background: #000;
    border: 1px solid #e0e0e0;
    color: #e0e0e0;
    padding: 5px 10px;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Montserrat';
    transition: all 0.3s;
    box-shadow: 0 0 5px rgba(255,255,255,0.2);
    text-decoration: none;
}

.luxury-button:hover {
    background: #e0e0e0;
    color: #000;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.icon-button {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mining-monitor {
    margin: 20px auto;
    max-width: 800px;
}

.monitor-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-label {
    color: #e0e0e0;
    font-weight: bold;
}

.stat-value {
    color: #fff;
}

.fan-bar-container {
    width: 200px;
    height: 10px;
    background: linear-gradient(to right, #00ff00, #ffff00, #ff0000);
    margin-right: 10px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.fan-bar {
    height: 100%;
    background: #fff;
    opacity: 0.3;
    position: absolute;
    left: 0;
    top: 0;
    transition: width 0.5s;
}

.power-bar-container {
    width: 200px;
    height: 10px;
    background: linear-gradient(to right, #00ff00, #ffff00, #ff0000);
    margin-right: 10px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.power-bar {
    height: 100%;
    background: #fff;
    opacity: 0.3;
    position: absolute;
    left: 0;
    top: 0;
    transition: width 0.5s;
}

.water-bar-container {
    width: 200px;
    height: 10px;
    background: linear-gradient(to right, #b2caf9, #2959b1, #030175);
    margin-right: 10px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.water-bar {
    height: 100%;
    background: #fff;
    opacity: 0.3;
    position: absolute;
    left: 0;
    top: 0;
    transition: width 0.5s;
}

.hero-gallery {
    margin: 40px auto;
    max-width: 1000px;
}

.large-gifs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.large-gifs-grid img {
    width: 300px;
    height: auto;
    border: 1px solid #e0e0e0;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
    transition: transform 0.3s;
}

.large-gifs-grid img:hover {
    transform: scale(1.05);
}

.mini-gallery .mini-previews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.mini-previews-grid img {
    width: 100%;
    height: auto;
    border: 1px solid #e0e0e0;
    box-shadow: 0 0 5px rgba(255,255,255,0.2);
}

.luxury-box {
    background: rgba(0,0,0,0.7);
    border: 1px solid #e0e0e0;
    padding: 20px;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.panel-title {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 3px rgba(255,255,255,0.3);
}

.quote-section {
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
}

.terminal-quote {
    font-family: 'Orbitron', sans-serif;
    font-style: italic;
    color: #e0e0e0;
    text-shadow: 0 0 3px rgba(255,255,255,0.3);
    overflow: hidden;
    border-right: .15em solid #e0e0e0;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #e0e0e0; }
}

.contract-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.random-nft img {
    width: 100%;
    height: auto;
}

.contract-info {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.address-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

#ca-box {
    background: #111;
    padding: 5px 10px;
    border: 1px solid #e0e0e0;
    word-break: break-all;
    max-width: 300px;
    text-align: left;
}

.buy-button {
    display: block;
    max-width: 300px;
    margin: 20px 0;
    font-size: 1.2rem;
    text-align: center;
}

.disclaimer-section {
    text-align: left;
    font-size: 1rem;
    color: #ccc;
    padding: 20px;
}

.disclaimer-section h3 {
    text-align: center;
    margin-bottom: 10px;
}

.nft-viewer {
    text-align: center;
}

.viewer-input {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#nft-id-input {
    background: #111;
    border: 1px solid #e0e0e0;
    color: #fff;
    padding: 10px;
    width: 200px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    overflow: auto;
    padding: 20px;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
}

.nft-image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.nft-image-section img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.nft-nav {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.nft-metadata h2 {
    margin-top: 0;
}

#nft-attributes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.attribute {
    background: #111;
    padding: 10px;
    border: 1px solid #e0e0e0;
}

.luxury-footer {
    background: rgba(0,0,0,0.8);
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.social-bar .social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: center;
    }
    
    .luxury-title {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .hash-simulator {
        margin: 10px 0;
        max-width: 100%;
    }
    
    .header-right {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .contract-section {
        grid-template-columns: 1fr;
    }
    
    .nft-view-grid {
        grid-template-columns: 1fr;
    }
    
    .large-gifs-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .mini-previews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .monitor-stats {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-section {
        font-size: 0.8rem;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .mini-previews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .viewer-input {
        flex-direction: column;
    }
    
    #nft-id-input {
        width: 100%;
    }
    
    .fan-bar-container {
        width: 100%;
    }
    
    .power-bar-container {
        width: 100%;
    }
    
    .water-bar-container {
        width: 100%;
    }
    
    .address-box {
        flex-direction: column;
    }
    
    .disclaimer-section {
        font-size: 0.7rem;
    }
}