/* ip00.top - Minimalist Strict Design */

:root {
    --bg-color: #050505;
    --card-bg: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent: #2a2a2a;
    --accent-hover: #333333;
    --border: #1a1a1a;
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-stack);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
        text-align: center;
    }
}

/* Left Column - Main IP */
.ip-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ip-display {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    word-break: break-all;
}

@media (max-width: 600px) {
    .ip-display {
        font-size: 3rem;
    }
}

.copy-icon {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    margin-left: 1rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.copy-icon:hover {
    opacity: 1;
}

/* Right Column - Details */
.details-section {
    border-left: 1px solid var(--border);
    padding-left: 4rem;
}

@media (max-width: 900px) {
    .details-section {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border);
        padding-top: 2rem;
    }
}

.detail-row {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

@media (max-width: 900px) {
    .detail-row {
        justify-content: center;
    }
}

.detail-label {
    min-width: 180px;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: right;
    margin-right: 2rem;
    font-size: inherit;
}

@media (max-width: 900px) {
    .detail-label {
        text-align: right;
        min-width: 140px;
        margin-right: 1.5rem;
        font-size: 1rem;
    }
}

.detail-value {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    opacity: 0.9;
}

/* Footer (optional if needed) */
footer {
    position: absolute;
    bottom: 2rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.6;
}
